Searched refs:siginfo (Results 1 – 7 of 7) sorted by relevance
/bionic/libc/bionic/ |
D | pthread_sigqueue.cpp | 44 siginfo_t siginfo; in pthread_sigqueue() local 45 siginfo.si_code = SI_QUEUE; in pthread_sigqueue() 46 siginfo.si_pid = getpid(); in pthread_sigqueue() 47 siginfo.si_uid = getuid(); in pthread_sigqueue() 48 siginfo.si_value = value; in pthread_sigqueue() 50 return syscall(__NR_rt_tgsigqueueinfo, getpid(), tid, sig, &siginfo) ? errno : 0; in pthread_sigqueue()
|
/bionic/libc/include/bits/ |
D | signal_types.h | 74 void (*sa_sigaction)(int, struct siginfo*, void*); \ 90 void (*sa_sigaction)(int, struct siginfo*, void*); \ 107 void (*sa_sigaction)(int, struct siginfo*, void*); 118 void (*sa_sigaction)(int, struct siginfo*, void*);
|
/bionic/libc/kernel/uapi/asm-arm/asm/ |
D | signal.h | 22 struct siginfo; 79 void(* _sa_sigaction) (int, struct siginfo *, void *);
|
/bionic/libc/kernel/uapi/asm-x86/asm/ |
D | signal.h | 25 struct siginfo; 83 void(* _sa_sigaction) (int, struct siginfo *, void *);
|
/bionic/tests/ |
D | sys_ptrace_test.cpp | 187 siginfo_t siginfo; in run_watchpoint_test() local 188 ASSERT_EQ(0, ptrace(PTRACE_GETSIGINFO, child, nullptr, &siginfo)) << strerror(errno); in run_watchpoint_test() 189 ASSERT_EQ(TRAP_HWBKPT, siginfo.si_code); in run_watchpoint_test() 191 ASSERT_LE(&data, siginfo.si_addr); in run_watchpoint_test() 192 ASSERT_GT((&data) + 1, siginfo.si_addr); in run_watchpoint_test() 354 siginfo_t siginfo; in TEST() local 355 ASSERT_EQ(0, ptrace(PTRACE_GETSIGINFO, child, nullptr, &siginfo)) << strerror(errno); in TEST() 356 ASSERT_EQ(TRAP_HWBKPT, siginfo.si_code); in TEST()
|
D | signal_test.cpp | 789 static siginfo received; in TEST() 792 handler.sa_sigaction = [](int, siginfo_t* siginfo, void*) { received = *siginfo; }; in TEST() argument 797 siginfo sent; in TEST()
|
/bionic/libc/kernel/uapi/asm-generic/ |
D | siginfo.h | 101 typedef struct siginfo { struct
|