代码搜索:PID
找到约 10,000 项符合「PID」的源代码
代码结果 10,000
www.eeworm.com/read/118873/14850937
bat s_restart.bat
@echo off
copy setpidev.bat + ircd.pid ircdtemp.bat > nul
call ircdtemp.bat
kill -SIGINT %ircd_pid%
call setpidev.bat
del ircdtemp.bat
www.eeworm.com/read/118873/14850940
bat s_rehash.bat
@echo off
copy setpidev.bat + ircd.pid ircdtemp.bat > nul
call ircdtemp.bat
kill -SIGHUP %ircd_pid%
call setpidev.bat
del ircdtemp.bat
www.eeworm.com/read/220004/14856277
log cc_build_debug.log
------------------------------ PID.pjt - Debug ------------------------------
[PID.c] "c:\ti\c6000\cgtools\bin\cl6x" -g -q -fr"C:/ICETEK-C6713-EDULab/Lab0602-PID/Debug" -d"_DEBUG" -mv6700 -@"Debug.
www.eeworm.com/read/218591/14914366
c setsid.c
/*
* linux/lib/setsid.c
*
* (C) 1991 Linus Torvalds
*/
#define __LIBRARY__
#include // Linux 标准头文件。定义了各种符号常数和类型,并申明了各种函数。
// 如定义了__LIBRARY__,则还包括系统调用号和内嵌汇编_syscall0()等。
//// 创建一个会话并设置进程组
www.eeworm.com/read/217300/14969852
c p11-5.c
#include
#include
#include
#include "err_exit.h"
main(int argc, char *argv)
{
int pid, fd[2],len;
char buffer[PIPE_BUF];
FILE *stream;
if ( pipe(fd) !=
www.eeworm.com/read/217300/14970008
c p6-1.c
#include
#include
#include "err_exit.h"
int global = 5;
int main(void)
{
pid_t pid;
char *string = "these are values before fork:";
int local = 10;
www.eeworm.com/read/216437/15014029
c setsid.c
/*
* linux/lib/setsid.c
*
* (C) 1991 Linus Torvalds
*/
#define __LIBRARY__
#include
_syscall0(pid_t,setsid)
www.eeworm.com/read/114924/15033929
c fork1.c
#include
#include "ourhdr.h"
int glob = 6; /* external variable in initialized data */
char buf[] = "a write to stdout\n";
int
main(void)
{
int var; /* automatic variable on the s
www.eeworm.com/read/114924/15033931
c vfork3.c
#include
#include "ourhdr.h"
static void f1(void), f2(void);
int
main(void)
{
f1();
f2();
_exit(0);
}
static void
f1(void)
{
pid_t pid;
if ( (pid = vfork()) < 0)
err_sys("vfor
www.eeworm.com/read/114922/15033944
c fork1.c
#include
#include "ourhdr.h"
int glob = 6; /* external variable in initialized data */
char buf[] = "a write to stdout\n";
int
main(void)
{
int var; /* automatic variable on the s