代码搜索结果

找到约 10,000 项符合 PID 的代码

pid.h

/* ================================================================================= File name: PID.H (IQ version) Originator: ECS Development De

pid.c

/*===================================================================================== File name: PID.C (IQ version) Originator: ECS Development

pid.tests

test `(echo $$)` = `echo $$`; echo $?

pid.c

/*************************************************************************/ /* */ /* Copyright (c) 1993-2001 Accelerated

pid.h

#ifndef _LINUX_PID_H #define _LINUX_PID_H enum pid_type { PIDTYPE_PID, PIDTYPE_TGID, PIDTYPE_PGID, PIDTYPE_SID, PIDTYPE_MAX }; struct pid { /* Try to keep pid_chain in the same cacheline as nr

pid.s

;********************************************************************* ; * ; Software License Agreement

pid.c

#include #include #include void SigChild(int nSignal) { pid_t pid_t; int nState; while ((pid_t = waitpid(-1, &nState, WNOHANG)) > 0) ; signal(SIGCLD, SigChild);