Searched refs:tgkill (Results 1 - 7 of 7) sorted by relevance
/third_party/musl/libc-test/src/functionalext/tgkill/ |
H A D | tgkill_ext.c | 17 #include <sys/tgkill.h> 38 * @tc.desc : test tgkill by sending SIGCONT sig in the same thread 43 TEST(tgkill(getpgid(getpid()), getpid(), SIGCONT) == 0); in tgkill_0010() 48 * @tc.desc : test tgkill by sending SIGUSR1 sig in a different thread 62 TEST(tgkill(getpgid(threadPid), threadPid, SIGUSR1) == 0); in tgkill_0020()
|
/third_party/musl/src/linux/ |
H A D | tgkill.c | 16 #include <sys/tgkill.h> 19 int tgkill(int tgid, int tid, int sig) in tgkill() function
|
/third_party/musl/porting/linux/user/src/linux/ |
H A D | tgkill.c | 16 #include <sys/tgkill.h> 19 int tgkill(int tgid, int tid, int sig) in tgkill() function
|
/third_party/musl/libc-test/src/functional/ |
H A D | tgkill.c | 5 #include <sys/tgkill.h>
16 if (tgkill(tgid, tid, SIGPROF) == -1 && errno != ESRCH) {
in main() 17 perror("tgkill failed");
in main()
|
/third_party/musl/porting/linux/user/include/sys/ |
H A D | tgkill.h | 27 * @return tgkill result. 31 int tgkill(int tgid, int tid, int sig);
|
/third_party/musl/include/sys/ |
H A D | tgkill.h | 27 * @return tgkill result. 31 int tgkill(int tgid, int tid, int sig);
|
/third_party/musl/Benchmark/musl/ |
H A D | libc_pthread.cpp | 24 #include "sys/tgkill.h" 708 if (tgkill(pgid, pid, SIGCONT) == -1) { in Bm_function_Tgkill() 709 perror("tgkill proc"); in Bm_function_Tgkill()
|
Completed in 3 milliseconds