/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/ |
28-23.c | 20 * If the signal action was set with the signal() function, getting it into oact 24 * -> register a signal handler for SIGURG with signal(). 25 * -> check this signal handler works. 26 * -> change the signal handler with sigaction, saving old handler in oact. 27 * -> check the new signal handler works. 28 * -> set the old signal handler back 29 * -> check the old signal handler still works. 31 * The test fails if a signal handler does not work as expected [all...] |
28-24.c | 20 * If the signal action was set with the signal() function, getting it into oact 24 * -> register a signal handler for SIGVTALRM with signal(). 25 * -> check this signal handler works. 26 * -> change the signal handler with sigaction, saving old handler in oact. 27 * -> check the new signal handler works. 28 * -> set the old signal handler back 29 * -> check the old signal handler still works. 31 * The test fails if a signal handler does not work as expected [all...] |
28-25.c | 20 * If the signal action was set with the signal() function, getting it into oact 24 * -> register a signal handler for SIGXCPU with signal(). 25 * -> check this signal handler works. 26 * -> change the signal handler with sigaction, saving old handler in oact. 27 * -> check the new signal handler works. 28 * -> set the old signal handler back 29 * -> check the old signal handler still works. 31 * The test fails if a signal handler does not work as expected [all...] |
28-26.c | 20 * If the signal action was set with the signal() function, getting it into oact 24 * -> register a signal handler for SIGXFSZ with signal(). 25 * -> check this signal handler works. 26 * -> change the signal handler with sigaction, saving old handler in oact. 27 * -> check the new signal handler works. 28 * -> set the old signal handler back 29 * -> check the old signal handler still works. 31 * The test fails if a signal handler does not work as expected [all...] |
28-3.c | 20 * If the signal action was set with the signal() function, getting it into oact 24 * -> register a signal handler for SIGBUS with signal(). 25 * -> check this signal handler works. 26 * -> change the signal handler with sigaction, saving old handler in oact. 27 * -> check the new signal handler works. 28 * -> set the old signal handler back 29 * -> check the old signal handler still works. 31 * The test fails if a signal handler does not work as expected [all...] |
28-4.c | 20 * If the signal action was set with the signal() function, getting it into oact 24 * -> register a signal handler for SIGCHLD with signal(). 25 * -> check this signal handler works. 26 * -> change the signal handler with sigaction, saving old handler in oact. 27 * -> check the new signal handler works. 28 * -> set the old signal handler back 29 * -> check the old signal handler still works. 31 * The test fails if a signal handler does not work as expected [all...] |
28-5.c | 20 * If the signal action was set with the signal() function, getting it into oact 24 * -> register a signal handler for SIGCONT with signal(). 25 * -> check this signal handler works. 26 * -> change the signal handler with sigaction, saving old handler in oact. 27 * -> check the new signal handler works. 28 * -> set the old signal handler back 29 * -> check the old signal handler still works. 31 * The test fails if a signal handler does not work as expected [all...] |
28-6.c | 20 * If the signal action was set with the signal() function, getting it into oact 24 * -> register a signal handler for SIGFPE with signal(). 25 * -> check this signal handler works. 26 * -> change the signal handler with sigaction, saving old handler in oact. 27 * -> check the new signal handler works. 28 * -> set the old signal handler back 29 * -> check the old signal handler still works. 31 * The test fails if a signal handler does not work as expected [all...] |
28-7.c | 20 * If the signal action was set with the signal() function, getting it into oact 24 * -> register a signal handler for SIGHUP with signal(). 25 * -> check this signal handler works. 26 * -> change the signal handler with sigaction, saving old handler in oact. 27 * -> check the new signal handler works. 28 * -> set the old signal handler back 29 * -> check the old signal handler still works. 31 * The test fails if a signal handler does not work as expected [all...] |
28-8.c | 20 * If the signal action was set with the signal() function, getting it into oact 24 * -> register a signal handler for SIGILL with signal(). 25 * -> check this signal handler works. 26 * -> change the signal handler with sigaction, saving old handler in oact. 27 * -> check the new signal handler works. 28 * -> set the old signal handler back 29 * -> check the old signal handler still works. 31 * The test fails if a signal handler does not work as expected [all...] |
28-9.c | 20 * If the signal action was set with the signal() function, getting it into oact 24 * -> register a signal handler for SIGINT with signal(). 25 * -> check this signal handler works. 26 * -> change the signal handler with sigaction, saving old handler in oact. 27 * -> check the new signal handler works. 28 * -> set the old signal handler back 29 * -> check the old signal handler still works. 31 * The test fails if a signal handler does not work as expected [all...] |
23-1.c | 19 * If SA_NODEFER is not set in sa_flags, the caught signal is added to the 20 * thread's signal mask during the handler execution. 23 * -> register a signal handler for SIGABRT 27 * The test fails if signal handler if reentered or signal is not pending when raised again. 43 #include <signal.h> 77 #define SIGNAL SIGABRT 92 FAILED("Signal was not masked in signal handler"); 97 /* Raise the signal again. It should be masked * [all...] |
23-10.c | 19 * If SA_NODEFER is not set in sa_flags, the caught signal is added to the 20 * thread's signal mask during the handler execution. 23 * -> register a signal handler for SIGPIPE 27 * The test fails if signal handler if reentered or signal is not pending when raised again. 43 #include <signal.h> 77 #define SIGNAL SIGPIPE 92 FAILED("Signal was not masked in signal handler"); 97 /* Raise the signal again. It should be masked * [all...] |
23-11.c | 19 * If SA_NODEFER is not set in sa_flags, the caught signal is added to the 20 * thread's signal mask during the handler execution. 23 * -> register a signal handler for SIGQUIT 27 * The test fails if signal handler if reentered or signal is not pending when raised again. 43 #include <signal.h> 77 #define SIGNAL SIGQUIT 92 FAILED("Signal was not masked in signal handler"); 97 /* Raise the signal again. It should be masked * [all...] |
23-12.c | 19 * If SA_NODEFER is not set in sa_flags, the caught signal is added to the 20 * thread's signal mask during the handler execution. 23 * -> register a signal handler for SIGSEGV 27 * The test fails if signal handler if reentered or signal is not pending when raised again. 43 #include <signal.h> 77 #define SIGNAL SIGSEGV 92 FAILED("Signal was not masked in signal handler"); 97 /* Raise the signal again. It should be masked * [all...] |
23-13.c | 19 * If SA_NODEFER is not set in sa_flags, the caught signal is added to the 20 * thread's signal mask during the handler execution. 23 * -> register a signal handler for SIGTERM 27 * The test fails if signal handler if reentered or signal is not pending when raised again. 43 #include <signal.h> 77 #define SIGNAL SIGTERM 92 FAILED("Signal was not masked in signal handler"); 97 /* Raise the signal again. It should be masked * [all...] |
23-14.c | 19 * If SA_NODEFER is not set in sa_flags, the caught signal is added to the 20 * thread's signal mask during the handler execution. 23 * -> register a signal handler for SIGTSTP 27 * The test fails if signal handler if reentered or signal is not pending when raised again. 43 #include <signal.h> 77 #define SIGNAL SIGTSTP 92 FAILED("Signal was not masked in signal handler"); 97 /* Raise the signal again. It should be masked * [all...] |
23-15.c | 19 * If SA_NODEFER is not set in sa_flags, the caught signal is added to the 20 * thread's signal mask during the handler execution. 23 * -> register a signal handler for SIGTTIN 27 * The test fails if signal handler if reentered or signal is not pending when raised again. 43 #include <signal.h> 77 #define SIGNAL SIGTTIN 92 FAILED("Signal was not masked in signal handler"); 97 /* Raise the signal again. It should be masked * [all...] |
23-16.c | 19 * If SA_NODEFER is not set in sa_flags, the caught signal is added to the 20 * thread's signal mask during the handler execution. 23 * -> register a signal handler for SIGTTOU 27 * The test fails if signal handler if reentered or signal is not pending when raised again. 43 #include <signal.h> 77 #define SIGNAL SIGTTOU 92 FAILED("Signal was not masked in signal handler"); 97 /* Raise the signal again. It should be masked * [all...] |
23-17.c | 19 * If SA_NODEFER is not set in sa_flags, the caught signal is added to the 20 * thread's signal mask during the handler execution. 23 * -> register a signal handler for SIGUSR1 27 * The test fails if signal handler if reentered or signal is not pending when raised again. 43 #include <signal.h> 77 #define SIGNAL SIGUSR1 92 FAILED("Signal was not masked in signal handler"); 97 /* Raise the signal again. It should be masked * [all...] |
23-18.c | 19 * If SA_NODEFER is not set in sa_flags, the caught signal is added to the 20 * thread's signal mask during the handler execution. 23 * -> register a signal handler for SIGUSR2 27 * The test fails if signal handler if reentered or signal is not pending when raised again. 43 #include <signal.h> 77 #define SIGNAL SIGUSR2 92 FAILED("Signal was not masked in signal handler"); 97 /* Raise the signal again. It should be masked * [all...] |
23-19.c | 19 * If SA_NODEFER is not set in sa_flags, the caught signal is added to the 20 * thread's signal mask during the handler execution. 23 * -> register a signal handler for SIGALRM 27 * The test fails if signal handler if reentered or signal is not pending when raised again. 40 #include <signal.h> 71 #define SIGNAL SIGALRM 82 FAILED("Signal was not masked in signal handler"); 87 /* Raise the signal again. It should be masked * [all...] |
23-2.c | 19 * If SA_NODEFER is not set in sa_flags, the caught signal is added to the 20 * thread's signal mask during the handler execution. 23 * -> register a signal handler for SIGALRM 27 * The test fails if signal handler if reentered or signal is not pending when raised again. 43 #include <signal.h> 77 #define SIGNAL SIGALRM 92 FAILED("Signal was not masked in signal handler"); 97 /* Raise the signal again. It should be masked * [all...] |
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/templates/ |
template_28-1.in | 20 * If the signal action was set with the signal() function, getting it into oact 24 * -> register a signal handler for %%MYSIG%% with signal(). 25 * -> check this signal handler works. 26 * -> change the signal handler with sigaction, saving old handler in oact. 27 * -> check the new signal handler works. 28 * -> set the old signal handler back 29 * -> check the old signal handler still works. 31 * The test fails if a signal handler does not work as expected [all...] |
/frameworks/rs/ |
rsSignal.cpp | 23 Signal::Signal() { 27 Signal::~Signal() { 32 bool Signal::init() { 35 ALOGE("Signal::init: mutex init failure: %s", strerror(status)); 41 ALOGE("Signal::init: condition init failure: %s", strerror(status)); 49 void Signal::set() { 52 ALOGE("Signal::set: error locking for set condition: %s", strerror(status)); 60 ALOGE("Signal::set: error on set condition: %s", strerror(status)) [all...] |