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

1 2 3 4 5 6 7 8 91011

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
3-8.c 15 2. Set the signal handler for SIGILL to handler
17 4. raise SIGILL
40 if (sigaction(SIGILL, &act, 0) == -1) {
46 if (sigaction(SIGILL, 0, &oact) == -1) {
52 if (raise(SIGILL) == -1) {
1-8.c 17 2. Use sigaction to setup a signal handler for SIGILL
18 3. Raise SIGILL.
40 if (sigaction(SIGILL, &act, 0) == -1) {
46 if (raise(SIGILL) == -1) {
28-8.c 24 * -> register a signal handler for SIGILL with signal().
65 if (signal(SIGILL, handler_1) == SIG_ERR) {
85 ret = sigaction(SIGILL, &sa, &save);
93 ret = raise(SIGILL);
106 ret = sigaction(SIGILL, &save, 0);
114 ret = raise(SIGILL);
22-8.c 18 3. (child) Setup a signal handler for SIGILL with SA_NODEFER set
20 4. (child) raise SIGILL
22 6. (child, signal handler) if count is 1 then raise SIGILL
44 printf("SIGILL caught\n");
54 printf("Raising SIGILL\n");
55 raise(SIGILL);
56 printf("Returning from raising SIGILL\n");
72 if (sigaction(SIGILL, &act, 0) == -1) {
78 if (raise(SIGILL) == -1) {
25-8.c 17 3. (child) Setup a signal handler for SIGILL
18 4. (child) raise SIGILL
20 6. (child, signal handler) if count is 1 then raise SIGILL
41 printf("SIGILL caught\n");
52 printf("Raising SIGILL\n");
53 raise(SIGILL);
54 printf("Returning from raising SIGILL\n");
70 if (sigaction(SIGILL, &act, 0) == -1) {
76 if (raise(SIGILL) == -1) {
8-9.c 26 printf("Caught SIGILL\n");
32 raise(SIGILL);
46 sigaddset(&act.sa_mask, SIGILL);
56 if (sigaction(SIGILL, &act, 0) == -1) {
13-8.c 31 printf("Caught SIGILL\n");
52 if (sigaction(SIGILL, &act, 0) == -1) {
64 if (raise(SIGILL) == -1) {
2-8.c 14 1. Call sigaction to set handler for SIGILL to use handler1
15 2. Call sigaction again to set handler for SIGILL to use handler2,
42 if (sigaction(SIGILL, &act, 0) == -1) {
50 if (sigaction(SIGILL, &act, &oact) == -1) {
4-8.c 16 3. (child) Setup a signal handler for SIGILL with SIGKILL added to
18 4. (child) raise SIGILL
54 if (sigaction(SIGILL, &act, 0) == -1) {
60 if (raise(SIGILL) == -1) {
6-8.c 9 setting the SA_INFO bit in the signal mask for SIGILL will result
37 if (sigaction(SIGILL, &act, 0) == -1) {
43 if (raise(SIGILL) == -1) {
12-34.c 30 printf("Caught SIGILL\n");
51 if (sigaction(SIGILL, &act, 0) == -1) {
63 if (raise(SIGILL) == -1) {
12-8.c 32 printf("Caught SIGILL\n");
53 if (sigaction(SIGILL, &act, 0) == -1) {
73 if (raise(SIGILL) == -1) {
18-8.c 24 * -> register a handler for SIGILL without SA_SIGINFO, and a known function
26 * -> raise SIGILL, and check the function has been called.
68 /* Install the signal handler for SIGILL */
69 ret = sigaction(SIGILL, &sa, 0);
82 ret = raise(SIGILL);
85 perror("Failed to raise SIGILL");
4-34.c 16 3. (child) Setup a signal handler for SIGILL with SIGSTOP added to
18 4. (child) raise SIGILL
53 if (sigaction(SIGILL, &act, 0) == -1) {
59 if (raise(SIGILL) == -1) {
8-8.c 31 printf("Caught SIGILL\n");
47 if (sigaction(SIGILL, &act, 0) == -1) {
62 if (raise(SIGILL) == -1) {
4-60.c 10 that attempting to add SIGKILL to the signal mask of SIGILL will
33 if (sigaction(SIGILL, &act, 0) == -1) {
  /external/chromium-trace/catapult/devil/devil/android/
device_signal.py 14 SIGILL = 4 # Illegal instruction
  /external/libmojo/third_party/catapult/devil/devil/android/
device_signal.py 14 SIGILL = 4 # Illegal instruction
  /external/ltp/testcases/misc/f00f/
f00f.c 49 void sigill(int sig) function
51 tst_resm(TPASS, "SIGILL received from f00f instruction. Good.");
57 signal(SIGILL, sigill);
68 * a SIGILL or lock the system.
71 "f00f instruction did not properly cause SIGILL");
  /external/valgrind/none/tests/s390x/
op_exception.c 21 sigaction(SIGILL, &sa, NULL);
  /external/libcxx/test/std/depr/depr.c.headers/
signal_h.pass.cpp 35 #ifndef SIGILL
36 #error SIGILL not defined
  /external/libcxx/test/std/language.support/support.runtime/
csignal.pass.cpp 35 #ifndef SIGILL
36 #error SIGILL not defined
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.c.headers/
signal_h.pass.cpp 35 #ifndef SIGILL
36 #error SIGILL not defined
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/language.support/support.runtime/
csignal.pass.cpp 35 #ifndef SIGILL
36 #error SIGILL not defined
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/signal_h/
13-1.c 18 (0 == SIGILL) ||

Completed in 192 milliseconds

1 2 3 4 5 6 7 8 91011