代码搜索:PID

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

代码结果 10,000
www.eeworm.com/read/250025/12442098

log bank20071023.log

2007 10-23 01:32:49[6784 ]###in semaphore default constructor,will create() 2007 10-23 01:32:49[6784 ]###create semaphore[262147] 2007 10-23 01:32:49[6784 ]###in semaphore default const
www.eeworm.com/read/250025/12442112

cpp procpool.cpp

#include "procpool.h" //全局变量,应用程序需用extern声明此值进行程序控制 volatile sig_atomic_t QuitFlag=0; SimpleLog *ProcPool::__logfile=NULL; ProcPool::ProcPool(SimpleLog &logfile,int& max,int& init,int &low,
www.eeworm.com/read/148489/12463502

m chap2_8f.m

%PID Controler Based on Ziegler-Nichols clear all; close all; ts=0.25; sys=tf(1,[10,2,0]); dsys=c2d(sys,ts,'z'); [num,den]=tfdata(dsys,'v'); axis('square'),zgrid('new'); figure(1); rloc
www.eeworm.com/read/234589/14104746

c b.c

#include #include #include int main(int argc, char *argv[]) { int pid = 0; int res; if(argc < 2){ printf("no input\n"); return 0; } pid =
www.eeworm.com/read/234579/14105270

c pipe_fork.c

#include #include #include #include int glob = 0; int var = 0; int i=0; int main() { int fd[2]; int size=0; const char final_chars[]="12
www.eeworm.com/read/234443/14112603

s75lld2

rm -f /var/run/lld2d*.pid /sbin/lld2d br0 eth1
www.eeworm.com/read/131256/14154019

c setsid.c

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

c setsid.c

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

c forkdemo1.c

/* forkdemo1.c * shows how fork creates two processes, distinguishable * by the different return values from fork() */ #include main() { int ret_from_fork, mypid; mypid = getpid();
www.eeworm.com/read/130700/14177179

txt~ 新建 文本文档.txt~

(一) 信号机制实验 实验目的 1、了解什么是信号 2、熟悉LINUX系统中进程之间软中断通信的基本原理 实验内容 1、编写程序:用fork( )创建两个子进程,再用系统调用signal( )让父进程捕捉键盘上来的中断信号(即按^c键);捕捉到中断信号后,父进程用系统调用kill( )向两个子进程发出信号,子进程捕捉到信号后分别输出下列信息后终止: Child process1 ...