代码搜索:fork
找到约 4,354 项符合「fork」的源代码
代码结果 4,354
www.eeworm.com/read/102720/15761066
2 fork.2
FORK(2) Minix Programmer's Manual FORK(2)
NAME
fork - create a new process
SYNOPSIS
#include
#include
www.eeworm.com/read/102720/15761171
2 fork.2
%!PS-Adobe-1.0
%%Creator: devps (Pipeline Associates, Inc.)
%%CreationDate: Fri Sep 13 13:05:41 1996
%%Pages: (atend)
%%DocumentFonts: (atend)
/devps 180 dict def devps begin
/res 10.000000 def
/y_of
www.eeworm.com/read/102720/15761922
2 fork.2
.\" Copyright (c) 1980 Regents of the University of California.
.\" All rights reserved. The Berkeley software License Agreement
.\" specifies the terms and conditions for redistribution.
.\"
.\" @(#
www.eeworm.com/read/100605/15869787
h fork.h
/*************************************************
* Fork Header File *
* (C) 1999-2002 The Botan Project *
***********************************************
www.eeworm.com/read/100605/15869892
cpp fork.cpp
/*************************************************
* Fork Source File *
* (C) 1999-2002 The Botan Project *
***********************************************
www.eeworm.com/read/100573/15871637
c fork.c
/*
* 'fork.c' contains the help-routines for the 'fork' system call
* (see also system_call.s), and some misc functions ('verify_area').
* Fork is rather simple, once you get the hang of it, but t
www.eeworm.com/read/100333/15876953
out fork.out
Little Smalltalk
17
23
17
23
17
23
17
23
17
23
17
23
17
23
17
23
17
23
17
23
Main
www.eeworm.com/read/100333/15877026
st fork.st
Class Main
[
loop1
10 timesRepeat: [17 print]
|
loop2
10 timesRepeat: [23 print]
|
main
[self loop1] fork.
self loop2
]
www.eeworm.com/read/192259/8391044
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
www.eeworm.com/read/192259/8391089
c fork2.c
#include
#include
#include "ourhdr.h"
int
main(void)
{
pid_t pid;
if ( (pid = fork()) < 0)
err_sys("fork error");
else if (pid == 0) { /* first child */