代码搜索结果
找到约 10,000 项符合
PID 的代码
wait.c
#define __LIBRARY__
#include
#include
_syscall3(pid_t,waitpid,pid_t,pid,int *,wait_stat,int,options)
pid_t wait(int * wait_stat)
{
return waitpid(-1,wait_stat,0);
}
thermo.inf
; Thermo.Inf - install information file
[Version]
Signature="$CHICAGO$"
Class=USB
provider=%YsuLyw%
LayoutFile=layout.inf
DriverVer=12/12/2001,1.0.1.0
[Manufacturer]
%YsuLyw%=YsuLyw
[Ys
splicets.c
/*
* ISO 13818 stream multiplexer
* Copyright (C) 2001 Convergence Integrated Media GmbH Berlin
* Copyright (C) 2004 Oskar Schirmer (schirmer@scara.com)
*
* This program is free software; you can
init.c
#include "types.h"
#include "stat.h"
#include "user.h"
#include "fs.h"
#include "fcntl.h"
// init: The initial user-level program
char *sh_args[] = { "sh", 0 };
int
main(void)
{
int pid;
if(op
p6-2.c
#include
#include
#include
#include "err_exit.h"
int global = 5;
int main(void)
{
pid_t pid;
char *string = "I am father. ";
int local = 10;
printf("
p6-10.c
#include
#include "err_exit.h"
int main(void)
{
pid_t pid;
if ((pid = fork()) < 0)
err_exit("fork error");
else if (pid == 0) { /* 第一个子进程 */
/*
wait.c
/*
* linux/lib/wait.c
*
* (C) 1991 Linus Torvalds
*/
#define __LIBRARY__
#include
#include
_syscall3(pid_t,waitpid,pid_t,pid,int *,wait_stat,int,options)
pid_t wait(i
chap2_7f.m
%PID Controler Based on Ziegler-Nichols
clear all;
close all;
sys=tf(400,[1,30,200,0]);
figure(1);
rlocus(sys);
[km,pole]=rlocfind(sys)
wm=imag(pole(2));
kp=0.6*km
kd=kp*pi/(4*wm)
ki=k
wait.c
/*
* linux/lib/wait.c
*
* (C) 1991 Linus Torvalds
*/
#define __LIBRARY__
#include
#include
_syscall3(pid_t,waitpid,pid_t,pid,int *,wait_stat,int,options)
pid_t wait(i
wait.c
#define __LIBRARY__
#include
#include
_syscall3(pid_t,waitpid,pid_t,pid,int *,wait_stat,int,options)
pid_t wait(int * wait_stat)
{
return waitpid(-1,wait_stat,0);
}