代码搜索:fork
找到约 4,354 项符合「fork」的源代码
代码结果 4,354
www.eeworm.com/read/209466/15219051
h _fork.h
#include
#include
#include
void _fork(char *str1,char *str2,char *str3)
{
char *str4[]={str2,str3};
int pid;
pid=fork();
if(pid==0)
{
if(execvp(str1,str4)==
www.eeworm.com/read/209081/15227518
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/207820/15261437
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/5773/71928
drw fork.drw
www.eeworm.com/read/11825/234862
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/480930/1311106
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 entry.S and others).
* Fork is rathe
www.eeworm.com/read/478549/1351245
s fork.s
/ int fork ( void )
.globl _fork
_fork:
movw $0x7f1c, %ax
int $0x21
jecxz 1f
movl %ecx, _errno
1:
ret
www.eeworm.com/read/478549/1351392
c fork.c
/* orginal written by E. Mattes */
#include
#include
#include
#include
#ifdef __EMX__
#include
#include
#else
#include
www.eeworm.com/read/470917/1438777
c fork.c
/* Copyright (C) 2003 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Martin Schwidefsky , 2003.
The GNU C Library is free softw