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

1 2 3 4 5 6 7 8 91011

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
3-5.c 15 2. Set the signal handler for SIGCONT to handler
17 4. raise SIGCONT
40 if (sigaction(SIGCONT, &act, 0) == -1) {
46 if (sigaction(SIGCONT, 0, &oact) == -1) {
52 if (raise(SIGCONT) == -1) {
1-5.c 17 2. Use sigaction to setup a signal handler for SIGCONT
18 3. Raise SIGCONT.
40 if (sigaction(SIGCONT, &act, 0) == -1) {
46 if (raise(SIGCONT) == -1) {
28-5.c 24 * -> register a signal handler for SIGCONT with signal().
65 if (signal(SIGCONT, handler_1) == SIG_ERR) {
85 ret = sigaction(SIGCONT, &sa, &save);
93 ret = raise(SIGCONT);
106 ret = sigaction(SIGCONT, &save, 0);
114 ret = raise(SIGCONT);
22-5.c 18 3. (child) Setup a signal handler for SIGCONT with SA_NODEFER set
20 4. (child) raise SIGCONT
22 6. (child, signal handler) if count is 1 then raise SIGCONT
44 printf("SIGCONT caught\n");
54 printf("Raising SIGCONT\n");
55 raise(SIGCONT);
56 printf("Returning from raising SIGCONT\n");
72 if (sigaction(SIGCONT, &act, 0) == -1) {
78 if (raise(SIGCONT) == -1) {
25-5.c 17 3. (child) Setup a signal handler for SIGCONT
18 4. (child) raise SIGCONT
20 6. (child, signal handler) if count is 1 then raise SIGCONT
41 printf("SIGCONT caught\n");
52 printf("Raising SIGCONT\n");
53 raise(SIGCONT);
54 printf("Returning from raising SIGCONT\n");
70 if (sigaction(SIGCONT, &act, 0) == -1) {
76 if (raise(SIGCONT) == -1) {
8-6.c 26 printf("Caught SIGCONT\n");
32 raise(SIGCONT);
46 sigaddset(&act.sa_mask, SIGCONT);
56 if (sigaction(SIGCONT, &act, 0) == -1) {
13-5.c 31 printf("Caught SIGCONT\n");
52 if (sigaction(SIGCONT, &act, 0) == -1) {
64 if (raise(SIGCONT) == -1) {
2-5.c 14 1. Call sigaction to set handler for SIGCONT to use handler1
15 2. Call sigaction again to set handler for SIGCONT to use handler2,
42 if (sigaction(SIGCONT, &act, 0) == -1) {
50 if (sigaction(SIGCONT, &act, &oact) == -1) {
4-5.c 16 3. (child) Setup a signal handler for SIGCONT with SIGKILL added to
18 4. (child) raise SIGCONT
54 if (sigaction(SIGCONT, &act, 0) == -1) {
60 if (raise(SIGCONT) == -1) {
6-5.c 9 setting the SA_INFO bit in the signal mask for SIGCONT will result
37 if (sigaction(SIGCONT, &act, 0) == -1) {
43 if (raise(SIGCONT) == -1) {
12-31.c 30 printf("Caught SIGCONT\n");
51 if (sigaction(SIGCONT, &act, 0) == -1) {
63 if (raise(SIGCONT) == -1) {
12-5.c 32 printf("Caught SIGCONT\n");
53 if (sigaction(SIGCONT, &act, 0) == -1) {
73 if (raise(SIGCONT) == -1) {
18-5.c 24 * -> register a handler for SIGCONT without SA_SIGINFO, and a known function
26 * -> raise SIGCONT, and check the function has been called.
68 /* Install the signal handler for SIGCONT */
69 ret = sigaction(SIGCONT, &sa, 0);
82 ret = raise(SIGCONT);
85 perror("Failed to raise SIGCONT");
4-31.c 16 3. (child) Setup a signal handler for SIGCONT with SIGSTOP added to
18 4. (child) raise SIGCONT
53 if (sigaction(SIGCONT, &act, 0) == -1) {
59 if (raise(SIGCONT) == -1) {
8-5.c 31 printf("Caught SIGCONT\n");
47 if (sigaction(SIGCONT, &act, 0) == -1) {
62 if (raise(SIGCONT) == -1) {
4-57.c 10 that attempting to add SIGKILL to the signal mask of SIGCONT will
33 if (sigaction(SIGCONT, &act, 0) == -1) {
4-83.c 10 that attempting to add SIGSTOP to the signal mask of SIGCONT will
33 if (sigaction(SIGCONT, &act, 0) == -1) {
19-5.c 25 * -> register a handler for SIGCONT with SA_SIGINFO, and a known function
27 * -> raise SIGCONT, and check the function has been called.
54 if (info->si_signo != SIGCONT) {
88 /* Install the signal handler for SIGCONT */
89 ret = sigaction(SIGCONT, &sa, 0);
102 ret = raise(SIGCONT);
105 perror("Failed to raise SIGCONT");
  /external/chromium-trace/catapult/devil/devil/android/
device_signal.py 28 SIGCONT = 18 # Continue
  /external/libmojo/third_party/catapult/devil/devil/android/
device_signal.py 28 SIGCONT = 18 # Continue
  /external/libedit/src/
sig.h 57 _DO(SIGCONT) \
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/signal_h/
13-1.c 15 (0 == SIGCONT) ||
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_getoverrun/speculative/
6-3.c 13 * For this test, signal SIGCONT will be used, clock CLOCK_REALTIME
30 ev.sigev_signo = SIGCONT;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_gettime/speculative/
6-2.c 12 * For this test, signal SIGCONT will be used, clock CLOCK_REALTIME
29 ev.sigev_signo = SIGCONT;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigpending/
1-2.c 43 if (raise(SIGCONT) != 0) {
44 printf("Could not raise SIGCONT\n");
57 if (sigismember(&pendingset, SIGCONT) == 1) {
91 if ((sigaddset(&act.sa_mask, SIGCONT) == -1) ||

Completed in 157 milliseconds

1 2 3 4 5 6 7 8 91011