代码搜索:PID

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

代码结果 10,000
www.eeworm.com/read/371500/9551487

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); /* p
www.eeworm.com/read/371500/9551492

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;
www.eeworm.com/read/371500/9551500

c shell1.c

#include #include #include "ourhdr.h" int main(void) { char buf[MAXLINE]; pid_t pid; int status; printf("%% "); /* print pr
www.eeworm.com/read/371500/9551843

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()
www.eeworm.com/read/371500/9551881

c devzero.c

#include #include #include #include "ourhdr.h" #define NLOOPS 1000 #define SIZE sizeof(long) /* size of shared memory are
www.eeworm.com/read/169884/9834710

sql total_num.sql

USE Stock GO CREATE VIEW dbo.Total_Num AS SELECT dbo.ProInStore.Pid, SUM(dbo.ProInStore.Pnum) AS Total FROM dbo.ProInStore INNER JOIN dbo.Product ON dbo.ProInStore.Pid = dbo.Product.Pid G
www.eeworm.com/read/169884/9834720

sql v_proinstore.sql

USE Stock GO CREATE VIEW dbo.v_ProInStore AS SELECT p.Pid, SUM(s.Pnum) AS SumNum FROM dbo.Product p INNER JOIN dbo.ProInStore s ON p.Pid = s.Pid GROUP BY p.Pid GO
www.eeworm.com/read/169504/9854283

h xport.h

/* SCCSID @(#)xport.h 1.34 2/25/98 */ /* * $Log$ */ #ifndef __XPORT_H__ #define __XPORT_H__ #include "common.h" /**************************************************************************** The
www.eeworm.com/read/365428/9863639

c setsid.c

/* * linux/lib/setsid.c * * (C) 1991 Linus Torvalds */ #define __LIBRARY__ #include // Linux 标准头文件。定义了各种符号常数和类型,并申明了各种函数。 // 如定义了__LIBRARY__,则还包括系统调用号和内嵌汇编_syscall0()等。 //// 创建一个会话并设置进程组
www.eeworm.com/read/169320/9867131

sql 8.2.4 查找指定节点的所有父节点的示例函数.sql

CREATE FUNCTION f_Pid(@ID char(3)) RETURNS @t_Level TABLE(ID char(3),Level int) AS BEGIN DECLARE @Level int SET @Level=1 INSERT @t_Level SELECT @ID,@Level WHILE @@ROWCOUNT>0 BEGIN SET