代码搜索:fork
找到约 4,354 项符合「fork」的源代码
代码结果 4,354
www.eeworm.com/read/101082/6241513
c fork_.c
/*
char id_fork[] = "@(#)fork_.c 1.1";
*
* fork a copy of this process
*
* calling sequence:
* integer fork
* ierror = fork()
* where:
* ierror will be - child pid if parent and successful
*
www.eeworm.com/read/101082/6244693
2 fork.2
.\" SCCSID: @(#)fork.2 8.1 9/11/90
.TH fork 2
.SH Name
fork \- create a new process
.SH Syntax
.nf
.B #include
.B #include
.PP
.B pid = fork()
.B pid_t pid;
.fi
.SH Descriptio
www.eeworm.com/read/101082/6246555
2 fork.2
.\" SCCSID: @(#)fork.2 8.1 9/11/90
.TH fork 2
.SH Name
fork \- create a new process
.SH Syntax
.nf
.B #include
.B #include
.PP
.B pid = fork()
.B pid_t pid;
.fi
.SH Descriptio
www.eeworm.com/read/100446/6269522
c fork.c
/* fork.c - fork and exec a process, connecting stdin/out w/pipes */
/* $OpenLDAP: pkg/ldap/servers/slapd/back-shell/fork.c,v 1.5.8.3 2000/06/13 17:57:37 kurt Exp $ */
/*
* Copyright 1998-2000 The Op
www.eeworm.com/read/322905/6301464
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/310703/6306551
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/187914/6337973
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/493101/6406592
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/486447/6532765
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, bu
www.eeworm.com/read/482748/6622042
c fork.c
#include
#include
#include
#include
int main(void)
{
pid_t result;
result = fork();
if(result == -1){
perror("fork");
exit;
}
else