Searched refs:spid (Results 1 – 5 of 5) sorted by relevance
/third_party/musl/libc-test/src/functionalext/supplement/manual/unistd/ |
D | tcgetpgrp.c | 48 pid_t spid; in tcgetpgrp_0100() local 49 spid = tcgetsid(STDIN_FILENO); in tcgetpgrp_0100() 60 result = tcsetpgrp(STDIN_FILENO, spid); in tcgetpgrp_0100()
|
D | tcsetpgrp.c | 48 pid_t spid; in tcsetpgrp_0100() local 49 spid = tcgetsid(STDIN_FILENO); in tcsetpgrp_0100() 60 result = tcsetpgrp(STDIN_FILENO, spid); in tcsetpgrp_0100()
|
/third_party/python/Lib/test/ |
D | test_wait4.py | 27 spid, status, rusage = os.wait4(cpid, option) 28 if spid == cpid: 31 self.assertEqual(spid, cpid)
|
D | test_wait3.py | 27 spid, status, rusage = os.wait3(os.WNOHANG) 28 if spid == cpid: 32 self.assertEqual(spid, cpid)
|
/third_party/toybox/lib/ |
D | xwrap.c | 778 char pidfile[256], spid[32]; in xpidfile() local 793 spid[xread(fd, spid, sizeof(spid)-1)] = 0; in xpidfile() 795 pid = atoi(spid); in xpidfile() 803 xwrite(fd, spid, sprintf(spid, "%ld\n", (long)getpid())); in xpidfile()
|