代码搜索:fork
找到约 4,354 项符合「fork」的源代码
代码结果 4,354
www.eeworm.com/read/160808/10498169
dsp fork.dsp
# Microsoft Developer Studio Project File - Name="fork" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Cons
www.eeworm.com/read/160808/10498171
ncb fork.ncb
www.eeworm.com/read/160808/10498176
plg fork.plg
Build Log
--------------------Configuration: fork - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\liulihui
www.eeworm.com/read/160808/10498180
dsw fork.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/352754/10517020
c fork.c
/*
* linux/kernel/fork.c
*
* Copyright (C) 1991, 1992 Linus Torvalds
*/
/*
* 'fork.c' contains the help-routines for the 'fork' system call
* (see also system_call.s).
* Fork is r
www.eeworm.com/read/278099/10571884
man fork.man
+++Date last modified: 05-Jul-1997
FORK USER COMMANDS FORK
NAME
fork - fork output to multiple files, including console.
SYNOPSIS
[comm
www.eeworm.com/read/278099/10571983
h fork.h
/* +++Date last modified: 05-Jul-1997 */
/*
** fork.h -- get characters from a pipe and display to all files
** needed (assumes stdout), Public Domain.
**
** PROGRAMMER : Dustin Purye
www.eeworm.com/read/278099/10571987
c fork.c
/* +++Date last modified: 05-Jul-1997 */
/*
** fork.c (fork.h) - fork output to multiple file(s).
**
** By Dustin Puryear
** Placed in the Public Domain.
*/
#include "
www.eeworm.com/read/159625/10632545
c fork.c
/*
* linux/kernel/fork.c
*
* (C) 1991 Linus Torvalds
*/
/*
* 'fork.c' contains the help-routines for the 'fork' system call
* (see also system_call.s), and some misc functions ('verify_area
www.eeworm.com/read/275970/10780341
c fork.c
main()
{
if (fork() == 0)
write(1, "child\n", 6);
else {
wait(0);
write(1, "parent\n", 7);
}
exit(0);
}