Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for sigemptyset (0.18 sec)

  1. src/regexp/testdata/testregex.c

    			matchprint(match, nmatch + 1, nsub, NiL, test);
    		}
    		return 0;
    	}
    	return 1;
    }
    
    static void
    sigunblock(int s)
    {
    #ifdef SIG_SETMASK
    	int		op;
    	sigset_t	mask;
    
    	sigemptyset(&mask);
    	if (s)
    	{
    		sigaddset(&mask, s);
    		op = SIG_UNBLOCK;
    	}
    	else op = SIG_SETMASK;
    	sigprocmask(op, &mask, NiL);
    #else
    #ifdef sigmask
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
Back to top