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

1 2 3 4 5 6 7 8 91011>>

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
3-11.c 15 2. Set the signal handler for SIGQUIT to handler
17 4. raise SIGQUIT
40 if (sigaction(SIGQUIT, &act, 0) == -1) {
46 if (sigaction(SIGQUIT, 0, &oact) == -1) {
52 if (raise(SIGQUIT) == -1) {
1-11.c 17 2. Use sigaction to setup a signal handler for SIGQUIT
18 3. Raise SIGQUIT.
40 if (sigaction(SIGQUIT, &act, 0) == -1) {
46 if (raise(SIGQUIT) == -1) {
28-11.c 24 * -> register a signal handler for SIGQUIT with signal().
65 if (signal(SIGQUIT, handler_1) == SIG_ERR) {
85 ret = sigaction(SIGQUIT, &sa, &save);
93 ret = raise(SIGQUIT);
106 ret = sigaction(SIGQUIT, &save, 0);
114 ret = raise(SIGQUIT);
22-11.c 18 3. (child) Setup a signal handler for SIGQUIT with SA_NODEFER set
20 4. (child) raise SIGQUIT
22 6. (child, signal handler) if count is 1 then raise SIGQUIT
44 printf("SIGQUIT caught\n");
54 printf("Raising SIGQUIT\n");
55 raise(SIGQUIT);
56 printf("Returning from raising SIGQUIT\n");
72 if (sigaction(SIGQUIT, &act, 0) == -1) {
78 if (raise(SIGQUIT) == -1) {
25-11.c 17 3. (child) Setup a signal handler for SIGQUIT
18 4. (child) raise SIGQUIT
20 6. (child, signal handler) if count is 1 then raise SIGQUIT
41 printf("SIGQUIT caught\n");
52 printf("Raising SIGQUIT\n");
53 raise(SIGQUIT);
54 printf("Returning from raising SIGQUIT\n");
70 if (sigaction(SIGQUIT, &act, 0) == -1) {
76 if (raise(SIGQUIT) == -1) {
8-12.c 26 printf("Caught SIGQUIT\n");
32 raise(SIGQUIT);
46 sigaddset(&act.sa_mask, SIGQUIT);
56 if (sigaction(SIGQUIT, &act, 0) == -1) {
13-11.c 31 printf("Caught SIGQUIT\n");
52 if (sigaction(SIGQUIT, &act, 0) == -1) {
64 if (raise(SIGQUIT) == -1) {
2-11.c 14 1. Call sigaction to set handler for SIGQUIT to use handler1
15 2. Call sigaction again to set handler for SIGQUIT to use handler2,
42 if (sigaction(SIGQUIT, &act, 0) == -1) {
50 if (sigaction(SIGQUIT, &act, &oact) == -1) {
4-11.c 16 3. (child) Setup a signal handler for SIGQUIT with SIGKILL added to
18 4. (child) raise SIGQUIT
54 if (sigaction(SIGQUIT, &act, 0) == -1) {
60 if (raise(SIGQUIT) == -1) {
6-11.c 9 setting the SA_INFO bit in the signal mask for SIGQUIT will result
37 if (sigaction(SIGQUIT, &act, 0) == -1) {
43 if (raise(SIGQUIT) == -1) {
12-11.c 32 printf("Caught SIGQUIT\n");
53 if (sigaction(SIGQUIT, &act, 0) == -1) {
73 if (raise(SIGQUIT) == -1) {
12-37.c 30 printf("Caught SIGQUIT\n");
51 if (sigaction(SIGQUIT, &act, 0) == -1) {
63 if (raise(SIGQUIT) == -1) {
18-11.c 24 * -> register a handler for SIGQUIT without SA_SIGINFO, and a known function
26 * -> raise SIGQUIT, and check the function has been called.
68 /* Install the signal handler for SIGQUIT */
69 ret = sigaction(SIGQUIT, &sa, 0);
82 ret = raise(SIGQUIT);
85 perror("Failed to raise SIGQUIT");
4-37.c 16 3. (child) Setup a signal handler for SIGQUIT with SIGSTOP added to
18 4. (child) raise SIGQUIT
53 if (sigaction(SIGQUIT, &act, 0) == -1) {
59 if (raise(SIGQUIT) == -1) {
8-11.c 31 printf("Caught SIGQUIT\n");
47 if (sigaction(SIGQUIT, &act, 0) == -1) {
62 if (raise(SIGQUIT) == -1) {
4-63.c 10 that attempting to add SIGKILL to the signal mask of SIGQUIT will
33 if (sigaction(SIGQUIT, &act, 0) == -1) {
4-89.c 10 that attempting to add SIGSTOP to the signal mask of SIGQUIT will
33 if (sigaction(SIGQUIT, &act, 0) == -1) {
  /external/ltp/testcases/kernel/io/disktest/
signals.h 35 #define SIGQUIT 0x03 /* Definition from POSIX */
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigpending/
1-1.c 34 (sigaddset(&blockset, SIGQUIT) == -1)) {
48 if (raise(SIGQUIT) != 0) {
49 printf("Could not raise SIGQUIT\n");
59 if (sigismember(&pendingset, SIGQUIT) == 1) {
  /external/chromium-trace/catapult/devil/devil/android/
device_signal.py 13 SIGQUIT = 3 # Quit
  /external/libmojo/third_party/catapult/devil/devil/android/
device_signal.py 13 SIGQUIT = 3 # Quit
  /external/selinux/libsepol/cil/test/unit/
test_integration.c 45 if (WIFSIGNALED(status) && (WTERMSIG(status) == SIGINT || WTERMSIG(status) == SIGQUIT))
50 if (WIFSIGNALED(status1) && (WTERMSIG(status1) == SIGINT || WTERMSIG(status1) == SIGQUIT))
55 if (WIFSIGNALED(status2) && (WTERMSIG(status2) == SIGINT || WTERMSIG(status2) == SIGQUIT))
71 if (WIFSIGNALED(status) && (WTERMSIG(status) == SIGINT || WTERMSIG(status) == SIGQUIT))
  /external/libedit/src/
sig.h 54 _DO(SIGQUIT) \
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/signal_h/
13-1.c 22 (0 == SIGQUIT) ||
  /prebuilts/go/darwin-x86/src/cmd/go/internal/base/
signal_unix.go 14 var signalsToIgnore = []os.Signal{os.Interrupt, syscall.SIGQUIT}
18 var SignalTrace os.Signal = syscall.SIGQUIT

Completed in 792 milliseconds

1 2 3 4 5 6 7 8 91011>>