HomeSort by relevance Sort by last modified time
    Searched refs:myhandler (Results 1 - 25 of 33) sorted by null

1 2

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/signal/
1-1.c 12 "myhandler" for SIGCHLD. Then another call to signal() is made about
14 The default action for SIGCHLD is to be ignored, so unless myhandler
27 void myhandler(int signo) function
35 if (signal(SIGCHLD, myhandler) == SIG_ERR) {
40 if (signal(SIGCHLD, SIG_DFL) != myhandler) {
2-1.c 12 "myhandler" for SIGCHLD. Then another call to signal() is made about
14 SIGCHLD should be ignored now, so unless myhandler gets called when
26 void myhandler(int signo) function
34 if (signal(SIGCHLD, myhandler) == SIG_ERR) {
39 if (signal(SIGCHLD, SIG_IGN) != myhandler) {
3-1.c 12 "myhandler" for SIGCHLD, and then raising that signal. If the
24 void myhandler(int signo) function
32 if (signal(SIGCHLD, myhandler) == SIG_ERR) {
6-1.c 20 void myhandler(int signo) function
29 if (signal(-1, myhandler) != SIG_ERR) {
7-1.c 20 void myhandler(int signo) function
29 if (signal(SIGKILL, myhandler) != SIG_ERR) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigset/
1-1.c 12 "myhandler" for SIGCHLD. Then another call to sigset() is made about
14 The default action for SIGCHLD is to be ignored, so unless myhandler
29 void myhandler(int signo) function
39 act.sa_handler = myhandler;
48 if (sigset(SIGCHLD, SIG_DFL) != myhandler) {
2-1.c 12 "myhandler" for SIGUSR1. Then another call to signal() is made about
14 SIGUSR1 should be ignored now, so unless myhandler gets called when
28 void myhandler(int signo) function
38 act.sa_handler = myhandler;
46 if (sigset(SIGUSR1, SIG_IGN) != myhandler) {
9-1.c 20 void myhandler(int signo) function
29 act.sa_handler = myhandler;
37 if (sigset(SIGUSR1, SIG_DFL) != myhandler) {
39 ("Test FAILED: sigset didn't return myhandler even though it was SIGUSR1's original disposition\n");
3-1.c 12 "myhandler" for SIGCHLD, and then raising that signal. If the
26 void myhandler(int signo) function
34 if (sigset(SIGCHLD, myhandler) == SIG_ERR) {
4-1.c 22 void myhandler(int signo) function
34 if (sigset(SIGCHLD, myhandler) == SIG_ERR) {
5-1.c 54 void myhandler(int signo) function
68 if (sigset(SIGCHLD, myhandler) == SIG_ERR) {
6-1.c 12 1. Register SIGCHLD with myhandler
31 void myhandler(int signo) function
40 act.sa_handler = myhandler;
7-1.c 15 * 1. Register SIGCHLD with myhandler
21 * sure that SIGCHLD is still handled by myhandler.
38 static void myhandler(int signo) function
49 act.sa_handler = myhandler;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/kill/
1-2.c 36 static void myhandler(int signo) function
63 act.sa_handler = myhandler;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/killpg/
1-2.c 31 void myhandler(int signo) function
44 act.sa_handler = myhandler;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigqueue/
1-1.c 32 void myhandler(int signo, siginfo_t * info, void *context) function
49 act.sa_sigaction = myhandler;
4-1.c 12 - Register for myhandler to be called when SIGTOTEST is called, and make
35 void myhandler(int signo, siginfo_t * info, void *context) function
47 act.sa_sigaction = myhandler;
5-1.c 12 - Register for myhandler to be called when SIGTOTEST is called, and make
35 void myhandler(int signo) function
46 act.sa_handler = myhandler;
6-1.c 15 - Register for myhandler to be called when SIGTOTEST is called, and make
41 void myhandler(int signo, siginfo_t * info, void *context) function
58 act.sa_sigaction = myhandler;
8-1.c 12 - Register for myhandler to be called when SIGTOTEST is called, and make
36 void myhandler(int signo, siginfo_t * info, void *context) function
48 act.sa_sigaction = myhandler;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigtimedwait/
4-1.c 12 1. Register signal SIGTOTEST with the handler myhandler
30 void myhandler(int signo) function
43 act.sa_handler = myhandler;
5-1.c 19 1. Register signal TIMERSIGNAL with the handler myhandler
43 void myhandler(int signo) function
71 act.sa_handler = myhandler;
6-1.c 20 1. Register signal TIMERSIGNAL with the handler myhandler
45 void myhandler(int signo) function
73 act.sa_handler = myhandler;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigwaitinfo/
1-1.c 13 1. Register signal SIGTOTEST with the handler myhandler
30 void myhandler(int signo) function
42 act.sa_handler = myhandler;
2-1.c 13 - Register for myhandler to be called when any signal between SIGRTMIN
32 void myhandler(int signo, siginfo_t * info, void *context) function
45 act.sa_sigaction = myhandler;

Completed in 96 milliseconds

1 2