HomeSort by relevance Sort by last modified time
    Searched defs:handler (Results 326 - 350 of 2987) sorted by null

<<11121314151617181920>>

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
17-23.c 10 errno set to EINTR if a handler for the SIGURG signal is setup with
30 void handler(int signo) function
45 act.sa_handler = handler;
17-24.c 10 errno set to EINTR if a handler for the SIGVTALRM signal is setup with
30 void handler(int signo) function
45 act.sa_handler = handler;
17-25.c 10 errno set to EINTR if a handler for the SIGXCPU signal is setup with
30 void handler(int signo) function
45 act.sa_handler = handler;
17-26.c 10 errno set to EINTR if a handler for the SIGXFSZ signal is setup with
30 void handler(int signo) function
45 act.sa_handler = handler;
17-3.c 10 errno set to EINTR if a handler for the SIGBUS signal is setup with
30 void handler(int signo) function
45 act.sa_handler = handler;
17-4.c 10 errno set to EINTR if a handler for the SIGCHLD signal is setup with
30 void handler(int signo) function
45 act.sa_handler = handler;
17-5.c 10 errno set to EINTR if a handler for the SIGCONT signal is setup with
30 void handler(int signo) function
45 act.sa_handler = handler;
17-6.c 10 errno set to EINTR if a handler for the SIGFPE signal is setup with
30 void handler(int signo) function
45 act.sa_handler = handler;
17-7.c 10 errno set to EINTR if a handler for the SIGHUP signal is setup with
30 void handler(int signo) function
45 act.sa_handler = handler;
17-8.c 10 errno set to EINTR if a handler for the SIGILL signal is setup with
30 void handler(int signo) function
45 act.sa_handler = handler;
17-9.c 10 errno set to EINTR if a handler for the SIGINT signal is setup with
30 void handler(int signo) function
45 act.sa_handler = handler;
18-1.c 24 * -> register a handler for SIGABRT without SA_SIGINFO, and a known function
48 static void handler() function
58 /* Set the signal handler */
60 sa.sa_handler = handler;
68 /* Install the signal handler for SIGABRT */
72 perror("Failed to set signal handler");
78 "The signal handler has been called before signal was raised");
18-10.c 24 * -> register a handler for SIGPIPE without SA_SIGINFO, and a known function
48 static void handler() function
58 /* Set the signal handler */
60 sa.sa_handler = handler;
68 /* Install the signal handler for SIGPIPE */
72 perror("Failed to set signal handler");
78 "The signal handler has been called before signal was raised");
18-11.c 24 * -> register a handler for SIGQUIT without SA_SIGINFO, and a known function
48 static void handler() function
58 /* Set the signal handler */
60 sa.sa_handler = handler;
68 /* Install the signal handler for SIGQUIT */
72 perror("Failed to set signal handler");
78 "The signal handler has been called before signal was raised");
18-12.c 24 * -> register a handler for SIGSEGV without SA_SIGINFO, and a known function
48 static void handler() function
58 /* Set the signal handler */
60 sa.sa_handler = handler;
68 /* Install the signal handler for SIGSEGV */
72 perror("Failed to set signal handler");
78 "The signal handler has been called before signal was raised");
18-13.c 24 * -> register a handler for SIGTERM without SA_SIGINFO, and a known function
48 static void handler() function
58 /* Set the signal handler */
60 sa.sa_handler = handler;
68 /* Install the signal handler for SIGTERM */
72 perror("Failed to set signal handler");
78 "The signal handler has been called before signal was raised");
18-14.c 24 * -> register a handler for SIGTSTP without SA_SIGINFO, and a known function
48 static void handler() function
58 /* Set the signal handler */
60 sa.sa_handler = handler;
68 /* Install the signal handler for SIGTSTP */
72 perror("Failed to set signal handler");
78 "The signal handler has been called before signal was raised");
18-15.c 24 * -> register a handler for SIGTTIN without SA_SIGINFO, and a known function
48 static void handler() function
58 /* Set the signal handler */
60 sa.sa_handler = handler;
68 /* Install the signal handler for SIGTTIN */
72 perror("Failed to set signal handler");
78 "The signal handler has been called before signal was raised");
18-16.c 24 * -> register a handler for SIGTTOU without SA_SIGINFO, and a known function
48 static void handler() function
58 /* Set the signal handler */
60 sa.sa_handler = handler;
68 /* Install the signal handler for SIGTTOU */
72 perror("Failed to set signal handler");
78 "The signal handler has been called before signal was raised");
18-17.c 24 * -> register a handler for SIGUSR1 without SA_SIGINFO, and a known function
48 static void handler() function
58 /* Set the signal handler */
60 sa.sa_handler = handler;
68 /* Install the signal handler for SIGUSR1 */
72 perror("Failed to set signal handler");
78 "The signal handler has been called before signal was raised");
18-18.c 24 * -> register a handler for SIGUSR2 without SA_SIGINFO, and a known function
48 static void handler() function
58 /* Set the signal handler */
60 sa.sa_handler = handler;
68 /* Install the signal handler for SIGUSR2 */
72 perror("Failed to set signal handler");
78 "The signal handler has been called before signal was raised");
18-19.c 24 * -> register a handler for SIGPOLL without SA_SIGINFO, and a known function
48 static void handler() function
58 /* Set the signal handler */
60 sa.sa_handler = handler;
68 /* Install the signal handler for SIGPOLL */
72 perror("Failed to set signal handler");
78 "The signal handler has been called before signal was raised");
18-2.c 24 * -> register a handler for SIGALRM without SA_SIGINFO, and a known function
48 static void handler() function
58 /* Set the signal handler */
60 sa.sa_handler = handler;
68 /* Install the signal handler for SIGALRM */
72 perror("Failed to set signal handler");
78 "The signal handler has been called before signal was raised");
18-20.c 24 * -> register a handler for SIGPROF without SA_SIGINFO, and a known function
48 static void handler() function
58 /* Set the signal handler */
60 sa.sa_handler = handler;
68 /* Install the signal handler for SIGPROF */
72 perror("Failed to set signal handler");
78 "The signal handler has been called before signal was raised");
18-21.c 24 * -> register a handler for SIGSYS without SA_SIGINFO, and a known function
48 static void handler() function
58 /* Set the signal handler */
60 sa.sa_handler = handler;
68 /* Install the signal handler for SIGSYS */
72 perror("Failed to set signal handler");
78 "The signal handler has been called before signal was raised");

Completed in 284 milliseconds

<<11121314151617181920>>