Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
/* Test sig*set functions. */
#include <signal.h>
#include <stdio.h>
#define TEST_FUNCTION do_test ()
static int
do_test (void)
{
int result = 0;
int sig = -1;
#define TRY(call) \
if (call) \
{ \
printf ("%s (sig = %d): %m\n", #call, sig); \
result = 1; \
} \
else
sigset_t set;
TRY (sigemptyset (&set) != 0);
#ifdef SIGRTMAX
int max_sig = SIGRTMAX;
#else
int max_sig = NSIG - 1;
#endif
for (sig = 1; sig <= max_sig; ++sig)
{
TRY (sigismember (&set, sig) != 0);
TRY (sigaddset (&set, sig) != 0);
TRY (sigismember (&set, sig) == 0);
TRY (sigdelset (&set, sig) != 0);
TRY (sigismember (&set, sig) != 0);
}
return result;
}
#include "../test-skeleton.c"