代码搜索:PID

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

代码结果 10,000
www.eeworm.com/read/137779/13297427

hpp sysv.hpp

//Please refer to http://dansguardian.org/?page=copyright2 //for the license for this code. //Written by Daniel Barron (daniel@?? jadeb.com). //For support go to http://groups.yahoo.com/group/dansguar
www.eeworm.com/read/137779/13297552

cpp sysv.cpp

//Please refer to http://dansguardian.org/?page=copyright2 //for the license for this code. //Written by Daniel Barron (daniel@ //jadeb.com). //For support go to http://groups.yahoo.com/group/dansguar
www.eeworm.com/read/320714/13419294

c exit.c

/* passed * linux/kernel/exit.c * * (C) 1991 Linus Torvalds */ #include #include // 错误号头文件。包含系统中各种出错号。(Linus 从minix 中引进的) #include // 信号头文件。定义信号符号常量,信号结构以及信号操作函数原型
www.eeworm.com/read/320714/13419444

c exit.c

/* * linux/kernel/exit.c * * (C) 1991 Linus Torvalds */ #include // 错误号头文件。包含系统中各种出错号。(Linus 从minix 中引进的) #include // 信号头文件。定义信号符号常量,信号结构以及信号操作函数原型。 #include // 等
www.eeworm.com/read/316157/13529446

ini ftdiun2k.ini

[Uninstall] Device=VID_0403&PID_6001 Converter=FTDIBUS Serial=FTSER2K Key=FTDICOMM
www.eeworm.com/read/316157/13529453

ini ftdiunin.ini

[Uninstall] Device=VID_0403&PID_6001 InfFiles=FTDIBUS,FTDIPORT,FTSERMOU Key=FTDICOMM
www.eeworm.com/read/316157/13529464

ini ftdiun2k.ini

[Uninstall] Device=VID_0403&PID_6001 Converter=FTDIBUS Serial=FTSER2K Key=FTDICOMM
www.eeworm.com/read/316157/13529472

ini ftdiunin.ini

[Uninstall] Device=VID_0403&PID_6001 InfFiles=FTDIBUS,FTDIPORT,FTSERMOU Key=FTDICOMM
www.eeworm.com/read/315154/13550031

c 守护进程.c

/* 前言: Linux下守护进程的创建有很多的方法,比如我们可以使用cron,inetd等程序来创建.这里我们介绍在控制终端上有用户来启动的守护程序.这种守护程序不依赖于任何一个终端,不会随着用户的退出而结束.这种程序经常用于网络程序之中. 将一个程序变为守护程序一般按照下面的步骤. 调用函数fork,然后父进程推出,这样子进程就变为了后台进程了.同时子进程不成为进程组的组长(组 ...
www.eeworm.com/read/311774/13626031

c lock.c

#include "calld.h" typedef struct { char *line; /* points to malloc()ed area */ /* we lock by line (device name) */ pid_t pid; /* but unlock by process ID */ /* pid of 0 means available