代码搜索:PID
找到约 10,000 项符合「PID」的源代码
代码结果 10,000
www.eeworm.com/read/431812/8652693
cpp pku2598.cpp
#include
#include
int main()
{
double L, p, x, p2;
int intx;
double PId2 = asin(1);
while (scanf("%lf", &L) != -1)
{
if(L
www.eeworm.com/read/287922/8660743
c setsid.c
/*
* linux/lib/setsid.c
*
* (C) 1991 Linus Torvalds
*/
#define __LIBRARY__
#include
_syscall0(pid_t,setsid)
www.eeworm.com/read/431502/8673552
c msq.c
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define BUFSE 512
int i
www.eeworm.com/read/287415/8686987
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/387005/8713696
c semtest.c
#include "defs.h"
#include
#define SEMFILE "/testsem"
int main(void)
{
sem_t *sem;
pid_t pid;
int val, i;
(void)sem_unlink(SEMFILE);
ec_cmp( sem = sem_open(SEMFILE, O_CREAT, 0666
www.eeworm.com/read/387005/8713840
hpp uxprocess.hpp
/*
Copyright 2003 by Marc J. Rochkind. All rights reserved.
May be copied only for purposes and under conditions described
on the Web page www.basepath.com/aup/copyright.htm.
The Example Files ar
www.eeworm.com/read/386806/8725995
c base.c
/*
* linux/fs/proc/base.c
*
* Copyright (C) 1991, 1992 Linus Torvalds
*
* proc base directory handling functions
*/
#include
#include
#include
www.eeworm.com/read/386582/8736981
c processkiller.c
/*
* Copyright (C) 2008 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* Yo
www.eeworm.com/read/286776/8743736
txt 列表5.5.txt
【列表5.5】从一个GUI程序中建立一个子进程。
procedure TForm1.Button1Click(Sender: TObject);
var
pid : pid_t;
i : integer;
open_max : integer;
fname : String;
begin
pid := fork:
case pid of