代码搜索:fork
找到约 4,354 项符合「fork」的源代码
代码结果 4,354
www.eeworm.com/read/110160/15540977
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 ('ver
www.eeworm.com/read/107118/15612586
o fork.o
www.eeworm.com/read/107118/15612588
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/105274/15672359
c fork.c
/*
* $Id: Fork.C,v 1.6 2000/06/07 16:18:22 evgeny Exp $
*
* Copyright (c) 1994 HAL Computer Systems International, Ltd.
*
* HAL COMPUTER SYSTEMS INTERNATIONAL, LTD.
*
www.eeworm.com/read/105274/15672448
h fork.h
/*
* $Id: Fork.h,v 1.1.1.1 2000/04/25 13:49:02 fnevgeny Exp $
*
* Copyright (c) 1994 HAL Computer Systems International, Ltd.
*
* HAL COMPUTER SYSTEMS INTERNATIONAL, LTD.
*
www.eeworm.com/read/105179/15676168
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 rather sim
www.eeworm.com/read/104626/15686987
ico fork.ico
www.eeworm.com/read/104342/15697932
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/103200/15740773
c fork.c
main()
{
if (fork() == 0)
write(1, "child\n", 6);
else {
wait(0);
write(1, "parent\n", 7);
}
exit(0);
}