Lines Matching defs:pid
959 "fork is not supported (pid %d). Continuing because of "
2155 TSAN_INTERCEPTOR(int, kill, int pid, int sig) {
2156 SCOPED_TSAN_INTERCEPTOR(kill, pid, sig);
2160 if (pid == (int)internal_getpid()) {
2163 int res = REAL(kill)(pid, sig);
2164 if (pid == (int)internal_getpid()) {
2210 int pid = REAL(fork)(fake);
2211 if (pid == 0) {
2215 } else if (pid > 0) {
2222 return pid;
2434 static void syscall_post_fork(uptr pc, int pid) {
2436 if (pid == 0) {
2440 } else if (pid > 0) {