代码搜索:PID

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

代码结果 10,000
www.eeworm.com/read/144431/12795070

c event.c

/* * Event notification code. * (C) 2005 FUJITA Tomonori * This code is licenced under the GPL. * * Some functions are based on audit code. */ #include #include "iet
www.eeworm.com/read/331180/12841035

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/331180/12841061

c zombie.c

#include "ourhdr.h" int main(void) { pid_t pid; if ( (pid = fork()) < 0) err_sys("fork error"); else if (pid == 0) /* child */ exit(0); /* parent */ sleep(4); system("ps"); exit(0); }
www.eeworm.com/read/331180/12841069

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/331180/12841084

c shell1.c

#include #include #include "ourhdr.h" int main(void) { char buf[MAXLINE]; pid_t pid; int status; printf("%% "); /* print prompt (printf requires %% to print %) */ wh
www.eeworm.com/read/331180/12841243

c child.c

#include #include #include static void sig_cld(); int main() { pid_t pid; if (signal(SIGCLD, sig_cld) == -1) perror("signal error"); if ( (pid = fork()) < 0
www.eeworm.com/read/331180/12841654

c pipe1.c

#include "ourhdr.h" int main(void) { int n, fd[2]; pid_t pid; char line[MAXLINE]; if (pipe(fd) < 0) err_sys("pipe error"); if ( (pid = fork()) < 0) err_sys("fork error"); else if (pid >
www.eeworm.com/read/331180/12841693

c devzero.c

#include #include #include #include "ourhdr.h" #define NLOOPS 1000 #define SIZE sizeof(long) /* size of shared memory area */ static int update(long *); int m
www.eeworm.com/read/330691/12874825

c speed_reg.c

#define PWM_MAX 0x3f0 #define PWM_MIN 0x010 #include "2407bit.h" #include "2407e.h" #include "Speed_Reg.h" extern PIDREG1 pid0; void EVA_PWM1_Init(SPEEDPID *speed1) { //Pwm Ini
www.eeworm.com/read/142736/12925453

htm access其他-11.htm

Untitled Document