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

1 2 3 4 5 6 7 8 910

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
3-20.c 15 2. Set the signal handler for SIGPROF to handler
17 4. raise SIGPROF
40 if (sigaction(SIGPROF, &act, 0) == -1) {
46 if (sigaction(SIGPROF, 0, &oact) == -1) {
52 if (raise(SIGPROF) == -1) {
1-20.c 17 2. Use sigaction to setup a signal handler for SIGPROF
18 3. Raise SIGPROF.
40 if (sigaction(SIGPROF, &act, 0) == -1) {
46 if (raise(SIGPROF) == -1) {
28-20.c 24 * -> register a signal handler for SIGPROF with signal().
65 if (signal(SIGPROF, handler_1) == SIG_ERR) {
85 ret = sigaction(SIGPROF, &sa, &save);
93 ret = raise(SIGPROF);
106 ret = sigaction(SIGPROF, &save, 0);
114 ret = raise(SIGPROF);
22-20.c 18 3. (child) Setup a signal handler for SIGPROF with SA_NODEFER set
20 4. (child) raise SIGPROF
22 6. (child, signal handler) if count is 1 then raise SIGPROF
44 printf("SIGPROF caught\n");
54 printf("Raising SIGPROF\n");
55 raise(SIGPROF);
56 printf("Returning from raising SIGPROF\n");
72 if (sigaction(SIGPROF, &act, 0) == -1) {
78 if (raise(SIGPROF) == -1) {
25-20.c 17 3. (child) Setup a signal handler for SIGPROF
18 4. (child) raise SIGPROF
20 6. (child, signal handler) if count is 1 then raise SIGPROF
41 printf("SIGPROF caught\n");
52 printf("Raising SIGPROF\n");
53 raise(SIGPROF);
54 printf("Returning from raising SIGPROF\n");
70 if (sigaction(SIGPROF, &act, 0) == -1) {
76 if (raise(SIGPROF) == -1) {
8-21.c 26 printf("Caught SIGPROF\n");
32 raise(SIGPROF);
46 sigaddset(&act.sa_mask, SIGPROF);
56 if (sigaction(SIGPROF, &act, 0) == -1) {
13-20.c 31 printf("Caught SIGPROF\n");
52 if (sigaction(SIGPROF, &act, 0) == -1) {
64 if (raise(SIGPROF) == -1) {
2-20.c 14 1. Call sigaction to set handler for SIGPROF to use handler1
15 2. Call sigaction again to set handler for SIGPROF to use handler2,
42 if (sigaction(SIGPROF, &act, 0) == -1) {
50 if (sigaction(SIGPROF, &act, &oact) == -1) {
4-20.c 16 3. (child) Setup a signal handler for SIGPROF with SIGKILL added to
18 4. (child) raise SIGPROF
54 if (sigaction(SIGPROF, &act, 0) == -1) {
60 if (raise(SIGPROF) == -1) {
6-20.c 9 setting the SA_INFO bit in the signal mask for SIGPROF will result
37 if (sigaction(SIGPROF, &act, 0) == -1) {
43 if (raise(SIGPROF) == -1) {
12-20.c 32 printf("Caught SIGPROF\n");
53 if (sigaction(SIGPROF, &act, 0) == -1) {
73 if (raise(SIGPROF) == -1) {
12-46.c 30 printf("Caught SIGPROF\n");
51 if (sigaction(SIGPROF, &act, 0) == -1) {
63 if (raise(SIGPROF) == -1) {
18-20.c 24 * -> register a handler for SIGPROF without SA_SIGINFO, and a known function
26 * -> raise SIGPROF, and check the function has been called.
68 /* Install the signal handler for SIGPROF */
69 ret = sigaction(SIGPROF, &sa, 0);
82 ret = raise(SIGPROF);
85 perror("Failed to raise SIGPROF");
4-46.c 16 3. (child) Setup a signal handler for SIGPROF with SIGSTOP added to
18 4. (child) raise SIGPROF
53 if (sigaction(SIGPROF, &act, 0) == -1) {
59 if (raise(SIGPROF) == -1) {
8-20.c 31 printf("Caught SIGPROF\n");
47 if (sigaction(SIGPROF, &act, 0) == -1) {
62 if (raise(SIGPROF) == -1) {
  /external/compiler-rt/test/tsan/
signal_malloc.cc 19 sigaction(SIGPROF, &act, 0);
20 kill(getpid(), SIGPROF);
signal_write.cc 17 sigaction(SIGPROF, &act, 0);
18 kill(getpid(), SIGPROF);
signal_errno.cc 21 pthread_kill(mainth, SIGPROF);
40 sigaction(SIGPROF, &act, 0);
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/signal_h/
13-1.c 32 #ifdef SIGPROF
33 (0 == SIGPROF) ||
14-1-buildonly.c 30 #ifdef SIGPROF
31 int dummy22 = SIGPROF;
  /external/chromium-trace/catapult/devil/devil/android/
device_signal.py 37 SIGPROF = 27 # Profiling timer expired
  /external/libmojo/third_party/catapult/devil/devil/android/
device_signal.py 37 SIGPROF = 27 # Profiling timer expired
  /external/compiler-rt/test/asan/TestCases/Linux/
signal_during_stop_the_world.cc 24 sigaction(SIGPROF, &act, 0);
40 kill(parent, SIGPROF);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigemptyset/
1-1.c 31 #ifdef SIGPROF
32 SIGPROF,
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigfillset/
1-1.c 32 #ifdef SIGPROF
33 SIGPROF,

Completed in 695 milliseconds

1 2 3 4 5 6 7 8 910