代码搜索:fork
找到约 4,354 项符合「fork」的源代码
代码结果 4,354
www.eeworm.com/read/137612/13309010
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/136959/13351092
c fork.c
/*
** fork.c (fork.h) - fork output to multiple file(s).
**
** By Dustin Puryear
** Placed in the Public Domain.
*/
#include "fork.h"
int main(int argc, char *argv[])
{
L
www.eeworm.com/read/136959/13351777
h fork.h
/*
** fork.h -- get characters from a pipe and display to all files
** needed (assumes stdout), Public Domain.
**
** PROGRAMMER : Dustin Puryear
** COMPILER : Mix Pow
www.eeworm.com/read/136959/13351944
man fork.man
FORK USER COMMANDS FORK
NAME
fork - fork output to multiple files, including console.
SYNOPSIS
[command |] fork [/?][/C] [filename.ext *filename.e
www.eeworm.com/read/321265/13409787
c fork.c
#include
#include
#include
#include
int main(void)
{
pid_t result;
result = fork();
if(result == -1){
perror("fork");
exit;
}
else
www.eeworm.com/read/320714/13419283
c fork.c
/*
* linux/kernel/<mark>fork</mark>.c
*
* (C) 1991 Linus Torvalds
*/
/*
注意:signal.c和<mark>fork</mark>.c文件的编译选项内不能有vc变量优化选项/Og,因为这两个文件
内的函数参数内包含了函数返回地址等内容。如果加了/Og选项,编译器就会在认为
这些参数不再使用后占用该内存,导致函数返回时出错。
math/math_emulate.c ...
www.eeworm.com/read/320714/13419435
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').
* Fork
www.eeworm.com/read/309649/13667360
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/309649/13667384
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/309649/13667385
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 "