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

1 2 3 4 5 6 7 8 91011

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
3-22.c 15 2. Set the signal handler for SIGTRAP to handler
17 4. raise SIGTRAP
40 if (sigaction(SIGTRAP, &act, 0) == -1) {
46 if (sigaction(SIGTRAP, 0, &oact) == -1) {
52 if (raise(SIGTRAP) == -1) {
1-22.c 17 2. Use sigaction to setup a signal handler for SIGTRAP
18 3. Raise SIGTRAP.
40 if (sigaction(SIGTRAP, &act, 0) == -1) {
46 if (raise(SIGTRAP) == -1) {
28-22.c 24 * -> register a signal handler for SIGTRAP with signal().
65 if (signal(SIGTRAP, handler_1) == SIG_ERR) {
85 ret = sigaction(SIGTRAP, &sa, &save);
93 ret = raise(SIGTRAP);
106 ret = sigaction(SIGTRAP, &save, 0);
114 ret = raise(SIGTRAP);
22-22.c 18 3. (child) Setup a signal handler for SIGTRAP with SA_NODEFER set
20 4. (child) raise SIGTRAP
22 6. (child, signal handler) if count is 1 then raise SIGTRAP
44 printf("SIGTRAP caught\n");
54 printf("Raising SIGTRAP\n");
55 raise(SIGTRAP);
56 printf("Returning from raising SIGTRAP\n");
72 if (sigaction(SIGTRAP, &act, 0) == -1) {
78 if (raise(SIGTRAP) == -1) {
25-22.c 17 3. (child) Setup a signal handler for SIGTRAP
18 4. (child) raise SIGTRAP
20 6. (child, signal handler) if count is 1 then raise SIGTRAP
41 printf("SIGTRAP caught\n");
52 printf("Raising SIGTRAP\n");
53 raise(SIGTRAP);
54 printf("Returning from raising SIGTRAP\n");
70 if (sigaction(SIGTRAP, &act, 0) == -1) {
76 if (raise(SIGTRAP) == -1) {
8-23.c 26 printf("Caught SIGTRAP\n");
32 raise(SIGTRAP);
46 sigaddset(&act.sa_mask, SIGTRAP);
56 if (sigaction(SIGTRAP, &act, 0) == -1) {
13-22.c 31 printf("Caught SIGTRAP\n");
52 if (sigaction(SIGTRAP, &act, 0) == -1) {
64 if (raise(SIGTRAP) == -1) {
2-22.c 14 1. Call sigaction to set handler for SIGTRAP to use handler1
15 2. Call sigaction again to set handler for SIGTRAP to use handler2,
42 if (sigaction(SIGTRAP, &act, 0) == -1) {
50 if (sigaction(SIGTRAP, &act, &oact) == -1) {
4-22.c 16 3. (child) Setup a signal handler for SIGTRAP with SIGKILL added to
18 4. (child) raise SIGTRAP
54 if (sigaction(SIGTRAP, &act, 0) == -1) {
60 if (raise(SIGTRAP) == -1) {
6-22.c 9 setting the SA_INFO bit in the signal mask for SIGTRAP will result
37 if (sigaction(SIGTRAP, &act, 0) == -1) {
43 if (raise(SIGTRAP) == -1) {
12-22.c 32 printf("Caught SIGTRAP\n");
53 if (sigaction(SIGTRAP, &act, 0) == -1) {
73 if (raise(SIGTRAP) == -1) {
12-48.c 30 printf("Caught SIGTRAP\n");
51 if (sigaction(SIGTRAP, &act, 0) == -1) {
63 if (raise(SIGTRAP) == -1) {
18-22.c 24 * -> register a handler for SIGTRAP without SA_SIGINFO, and a known function
26 * -> raise SIGTRAP, and check the function has been called.
68 /* Install the signal handler for SIGTRAP */
69 ret = sigaction(SIGTRAP, &sa, 0);
82 ret = raise(SIGTRAP);
85 perror("Failed to raise SIGTRAP");
4-48.c 16 3. (child) Setup a signal handler for SIGTRAP with SIGSTOP added to
18 4. (child) raise SIGTRAP
53 if (sigaction(SIGTRAP, &act, 0) == -1) {
59 if (raise(SIGTRAP) == -1) {
8-22.c 31 printf("Caught SIGTRAP\n");
47 if (sigaction(SIGTRAP, &act, 0) == -1) {
62 if (raise(SIGTRAP) == -1) {
4-100.c 10 that attempting to add SIGSTOP to the signal mask of SIGTRAP will
33 if (sigaction(SIGTRAP, &act, 0) == -1) {
4-74.c 10 that attempting to add SIGKILL to the signal mask of SIGTRAP will
33 if (sigaction(SIGTRAP, &act, 0) == -1) {
  /external/chromium-trace/catapult/devil/devil/android/
device_signal.py 15 SIGTRAP = 5 # Trap
  /external/libmojo/third_party/catapult/devil/devil/android/
device_signal.py 15 SIGTRAP = 5 # Trap
  /external/valgrind/gdbserver_tests/solaris/
nlcontrolc.stdoutB.exp 2 Program received signal SIGTRAP, Trace/breakpoint trap.
7 Program received signal SIGTRAP, Trace/breakpoint trap.
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/signal_h/
13-1.c 36 (0 == SIGTRAP) ||
  /external/mesa3d/src/gallium/auxiliary/os/
os_misc.h 60 # define os_break() kill(getpid(), SIGTRAP)
  /external/valgrind/gdbserver_tests/
nlcontrolc.stdoutB.exp 2 Program received signal SIGTRAP, Trace/breakpoint trap.
11 Program received signal SIGTRAP, Trace/breakpoint trap.
  /prebuilts/go/darwin-x86/src/runtime/testdata/testprognet/
signal.go 23 signal.Ignore(syscall.SIGTRAP)
24 syscall.Kill(syscall.Getpid(), syscall.SIGTRAP)
  /prebuilts/go/linux-x86/src/runtime/testdata/testprognet/
signal.go 23 signal.Ignore(syscall.SIGTRAP)
24 syscall.Kill(syscall.Getpid(), syscall.SIGTRAP)

Completed in 2355 milliseconds

1 2 3 4 5 6 7 8 91011