Searched refs:pid (Results 101 - 125 of 1170) sorted by relevance

1234567891011>>

/freebsd-13-stable/lib/libc/gen/
H A Dclock_getcpuclockid.c38 clock_getcpuclockid(pid_t pid, clockid_t *clock_id) argument
40 if (clock_getcpuclockid2(pid, CPUCLOCK_WHICH_PID, clock_id))
/freebsd-13-stable/lib/libc/sys/
H A Dptrace.c44 _ptrace(int request, pid_t pid, caddr_t addr, int data) argument
48 return (__sys_ptrace(request, pid, addr, data));
H A Dwait4.c44 wait4(pid_t pid, int *status, int options, struct rusage *ru) argument
48 __libc_interposing[INTERPOS_wait4])(pid, status, options, ru));
/freebsd-13-stable/contrib/kyua/utils/process/
H A Ddeadline_killer.cpp41 /// \param pid PID of the process (and process group) to kill.
43 const int pid) :
44 signals::timer(delta), _pid(pid)
42 deadline_killer(const datetime::delta& delta, const int pid) argument
/freebsd-13-stable/contrib/dialog/samples/
H A Dtailboxbg121 pid=`cat $tempfile |sed -e 's/ //g'`
22 if test -n "$pid" ; then
27 kill -$SIG_QUIT $pid 2>&1 >/dev/null 2>/dev/null
28 echo "killed [$pid]"
H A Dtailboxbg222 pid=`cat $tempfile |sed -e 's/ //g'`
23 if test -n "$pid" ; then
28 kill -$SIG_QUIT $pid 2>&1 >/dev/null 2>/dev/null
29 echo "killed [$pid]"
/freebsd-13-stable/bin/pkill/tests/
H A Dpgrep-U_test.sh15 pid=`pgrep -f -U $ruid $sleep`
16 if [ "$pid" = "$chpid" ]; then
31 pid=`pgrep -f -U $ruid $sleep`
32 if [ "$pid" = "$chpid" ]; then
H A Dpgrep-_g_test.sh15 pid=`pgrep -f -G $rgid $sleep`
16 if [ "$pid" = "$chpid" ]; then
31 pid=`pgrep -f -G $rgid $sleep`
32 if [ "$pid" = "$chpid" ]; then
H A Dpgrep-g_test.sh15 pid=`pgrep -f -g $pgrp $sleep`
16 if [ "$pid" = "$chpid" ]; then
30 pid=`pgrep -f -g 0 $sleep`
31 if [ "$pid" = "$chpid" ]; then
H A Dpgrep-s_test.sh15 pid=`pgrep -f -s $sid $sleep`
16 if [ "$pid" = "$chpid" ]; then
30 pid=`pgrep -f -s 0 $sleep`
31 if [ "$pid" = "$chpid" ]; then
H A Dpgrep-t_test.sh24 pid=`pgrep -f -t $tty $sleep`
25 if [ "$pid" = "$chpid" ]; then
30 pid=`pgrep -f -t $ttyshort $sleep`
31 if [ "$pid" = "$chpid" ]; then
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/misc/
H A Dtst.schrock.ksh44 pid\$target::\$1:entry
49 pid\$target:::entry
55 pid\$target:::return
61 pid\$target::\$1:return
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Dtst.coverage.d32 * SECTION: pid provider
44 pid$1:a.out::
H A Dtst.float.d32 * SECTION: pid provider
43 pid$1:a.out:main:
H A Dtst.gcc.d33 * SECTION: pid provider
45 pid$1:a.out::
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/probes/
H A Dtst.probestar.d48 /pid == $1/
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ustack/
H A Dtst.bigstack.d30 /pid == $1/
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/i386/ustack/
H A Dtst.circstack.d30 /pid == $1/
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/sparc/ustack/
H A Dtst.circstack.d30 /pid == $1/
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_wait/scan/
H A Dzpool_wait_replace_cancel.ksh39 kill_if_running $pid
47 typeset pid
57 pid=$!
60 proc_must_exist $pid
63 bkgrnd_proc_succeeded $pid
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_wait/
H A Dzpool_wait_initialize_cancel.ksh39 kill_if_running $pid
53 pid=$!
57 proc_must_exist $pid
61 bkgrnd_proc_succeeded $pid
64 typeset pid default_chunk_sz
H A Dzpool_wait_remove_cancel.ksh36 kill_if_running $pid
43 typeset pid
54 pid=$!
57 proc_must_exist $pid
60 bkgrnd_proc_succeeded $pid
H A Dzpool_wait_trim_cancel.ksh38 kill_if_running $pid
50 pid=$!
54 proc_must_exist $pid
58 bkgrnd_proc_succeeded $pid
65 typeset pid
/freebsd-13-stable/usr.sbin/autofs/
H A Dpopen.c61 struct pid { struct
62 SLIST_ENTRY(pid) next;
64 pid_t pid; member in struct:pid
67 static SLIST_HEAD(, pid) pidlist = SLIST_HEAD_INITIALIZER(pidlist);
80 struct pid *cur, *p;
81 pid_t pid; local
93 cur = malloc(sizeof(struct pid));
115 switch (pid = fork()) {
134 log_debugx("executing \"%s\" as pid %d", command, pid);
153 pid_t pid; local
[all...]
/freebsd-13-stable/tests/sys/kern/
H A Dwaitpid_nohang.c39 pid_t child, pid; local
50 pid = waitpid(child, &status, WNOHANG);
51 ATF_REQUIRE(pid == 0);
60 pid = waitpid(child, &status, WNOHANG);
61 ATF_REQUIRE(pid == child);

Completed in 104 milliseconds

1234567891011>>