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

1 2 3 4 5 6 7

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
3-23.c 15 2. Set the signal handler for SIGURG to handler
17 4. raise SIGURG
40 if (sigaction(SIGURG, &act, 0) == -1) {
46 if (sigaction(SIGURG, 0, &oact) == -1) {
52 if (raise(SIGURG) == -1) {
1-23.c 17 2. Use sigaction to setup a signal handler for SIGURG
18 3. Raise SIGURG.
40 if (sigaction(SIGURG, &act, 0) == -1) {
46 if (raise(SIGURG) == -1) {
28-23.c 24 * -> register a signal handler for SIGURG with signal().
65 if (signal(SIGURG, handler_1) == SIG_ERR) {
85 ret = sigaction(SIGURG, &sa, &save);
93 ret = raise(SIGURG);
106 ret = sigaction(SIGURG, &save, 0);
114 ret = raise(SIGURG);
22-23.c 18 3. (child) Setup a signal handler for SIGURG with SA_NODEFER set
20 4. (child) raise SIGURG
22 6. (child, signal handler) if count is 1 then raise SIGURG
44 printf("SIGURG caught\n");
54 printf("Raising SIGURG\n");
55 raise(SIGURG);
56 printf("Returning from raising SIGURG\n");
72 if (sigaction(SIGURG, &act, 0) == -1) {
78 if (raise(SIGURG) == -1) {
25-23.c 17 3. (child) Setup a signal handler for SIGURG
18 4. (child) raise SIGURG
20 6. (child, signal handler) if count is 1 then raise SIGURG
41 printf("SIGURG caught\n");
52 printf("Raising SIGURG\n");
53 raise(SIGURG);
54 printf("Returning from raising SIGURG\n");
70 if (sigaction(SIGURG, &act, 0) == -1) {
76 if (raise(SIGURG) == -1) {
8-24.c 26 printf("Caught SIGURG\n");
32 raise(SIGURG);
46 sigaddset(&act.sa_mask, SIGURG);
56 if (sigaction(SIGURG, &act, 0) == -1) {
13-23.c 31 printf("Caught SIGURG\n");
52 if (sigaction(SIGURG, &act, 0) == -1) {
64 if (raise(SIGURG) == -1) {
2-23.c 14 1. Call sigaction to set handler for SIGURG to use handler1
15 2. Call sigaction again to set handler for SIGURG to use handler2,
42 if (sigaction(SIGURG, &act, 0) == -1) {
50 if (sigaction(SIGURG, &act, &oact) == -1) {
4-23.c 16 3. (child) Setup a signal handler for SIGURG with SIGKILL added to
18 4. (child) raise SIGURG
54 if (sigaction(SIGURG, &act, 0) == -1) {
60 if (raise(SIGURG) == -1) {
6-23.c 9 setting the SA_INFO bit in the signal mask for SIGURG will result
37 if (sigaction(SIGURG, &act, 0) == -1) {
43 if (raise(SIGURG) == -1) {
12-23.c 32 printf("Caught SIGURG\n");
53 if (sigaction(SIGURG, &act, 0) == -1) {
73 if (raise(SIGURG) == -1) {
12-49.c 30 printf("Caught SIGURG\n");
51 if (sigaction(SIGURG, &act, 0) == -1) {
63 if (raise(SIGURG) == -1) {
18-23.c 24 * -> register a handler for SIGURG without SA_SIGINFO, and a known function
26 * -> raise SIGURG, and check the function has been called.
68 /* Install the signal handler for SIGURG */
69 ret = sigaction(SIGURG, &sa, 0);
82 ret = raise(SIGURG);
85 perror("Failed to raise SIGURG");
4-49.c 16 3. (child) Setup a signal handler for SIGURG with SIGSTOP added to
18 4. (child) raise SIGURG
53 if (sigaction(SIGURG, &act, 0) == -1) {
59 if (raise(SIGURG) == -1) {
8-23.c 31 printf("Caught SIGURG\n");
47 if (sigaction(SIGURG, &act, 0) == -1) {
62 if (raise(SIGURG) == -1) {
4-101.c 10 that attempting to add SIGSTOP to the signal mask of SIGURG will
33 if (sigaction(SIGURG, &act, 0) == -1) {
4-75.c 10 that attempting to add SIGKILL to the signal mask of SIGURG will
33 if (sigaction(SIGURG, &act, 0) == -1) {
19-23.c 25 * -> register a handler for SIGURG with SA_SIGINFO, and a known function
27 * -> raise SIGURG, and check the function has been called.
54 if (info->si_signo != SIGURG) {
88 /* Install the signal handler for SIGURG */
89 ret = sigaction(SIGURG, &sa, 0);
102 ret = raise(SIGURG);
105 perror("Failed to raise SIGURG");
17-23.c 10 errno set to EINTR if a handler for the SIGURG signal is setup with
32 printf("Caught SIGURG\n");
48 sigaction(SIGURG, &act, 0);
67 process sending the SIGURG signal, and the
82 kill(pid, SIGURG);
  /external/chromium-trace/catapult/devil/devil/android/
device_signal.py 33 SIGURG = 23 # Urgent I/O condition
  /external/libmojo/third_party/catapult/devil/devil/android/
device_signal.py 33 SIGURG = 23 # Urgent I/O condition
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/signal_h/
13-1.c 37 (0 == SIGURG) ||
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
signum.h 57 #define SIGURG 23 /* Urgent condition on socket (4.2 BSD). */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
signum.h 57 #define SIGURG 23 /* Urgent condition on socket (4.2 BSD). */
  /external/ltp/lib/
signame.h 59 #ifdef SIGURG
60 PAIR(SIGURG)

Completed in 172 milliseconds

1 2 3 4 5 6 7