代码搜索:pid控制
找到约 10,000 项符合「pid控制」的源代码
代码结果 10,000
www.eeworm.com/read/387658/8660245
c test7.c
#include
#include
#include
#include
#include
#include
int global = 6;
int main(int argc, char **argv)
{
int var;
var = 88;
www.eeworm.com/read/287415/8686998
c forkdemo2.c
/* forkdemo2.c - shows how child processes pick up at the return
* from fork() and can execute any code they like,
* even fork(). Predict number of lines of output.
*/
www.eeworm.com/read/430668/8734223
inf usb-avr-isp.inf
; Windows USB CDC Setup File
; Copyright (c) 2000 Microsoft Corporation
; Copyright (c) 2006 Recursion Co., Ltd.
; Copyright (c) 2006 OBJECTIVE DEVELOPMENT Software GmbH
[Version]
Signature="$W
www.eeworm.com/read/386582/8737744
c kill.c
#include
#include
#include
#include
#include
int kill_main(int argc, char **argv)
{
int sig = SIGTERM;
int result = 0;
argc--
www.eeworm.com/read/386582/8737755
c ps.c
#include
#include
#include
#include
#include
#include
#include
#include
#include
static char *nex
www.eeworm.com/read/286776/8743668
txt 列表5.18.txt
【列表5.18】帮助函数 ProcReadLink和调用他的函数。
// ProcReadLink - return the name of the file that the
// link points to.
function ProcReadLink (pid: __pid_t; const sFile: String): String;
var
buf : array
www.eeworm.com/read/286776/8743696
txt 列表5.15.txt
【列表5.15】使用EnumProcesses 进程。
procedure TForml. EnumProcessCB (pid: _pid_t);
begin
Memol. Lines.Add (IntToStr (pid));
end;
procedure TForml.FormCreate (Sender: TObject);
begin
EnumProcesses
www.eeworm.com/read/286776/8743741
txt 列表5.20.txt
【列表5.20】使用ProcEnumFiles过程。
procedure TForm1. EnumFilesCB (pid: __pid_t; fd: integer);
begin
Memo1. Lines.Add (Format ('%d = %s', [fd, ProcGetFd (pid, fd)]);
end;
procedure TForm1. FormCreate (