代码搜索:fork

找到约 4,354 项符合「fork」的源代码

代码结果 4,354
www.eeworm.com/read/400494/2352418

c fork.c

/* Copyright (C) 1991, 1992 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the
www.eeworm.com/read/395229/2444595

c fork.c

/* vi: set sw=4 ts=4: */ /* * fork() for uClibc * * Copyright (C) 2000-2004 by Erik Andersen * * GNU Library General Public License (LGPL) version 2 or later. */ #includ
www.eeworm.com/read/395229/2444996

s fork.s

/* Copyright (C) 1997, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Miguel de Icaza , 1997. The GNU C Library is free sof
www.eeworm.com/read/395229/2445029

c fork.c

#include #define __NR___libc_fork __NR_fork SYSCALL__ (__libc_fork, 0) /* R1 is now 0 for the parent and 1 for the child. Decrement it to make it -1 (all bits set) for the parent, an
www.eeworm.com/read/395229/2445722

c fork.c

/* vi: set sw=4 ts=4: */ /* * fork test for uClibc * * Copyright (C) 2000 by Lineo, inc. and Erik Andersen * Copyright (C) 2000,2001 by Erik Andersen * Written by Erik Ander
www.eeworm.com/read/392548/2495229

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/392548/2495333

c fork.c

/* orginal written by E. Mattes */ #include #include #include #include #ifdef __EMX__ #include #include #else #include
www.eeworm.com/read/389922/2530640

c _fork.c

#include #define fork _fork #include PUBLIC pid_t fork() { message m; return(_syscall(MM, FORK, &m)); }
www.eeworm.com/read/389922/2531126

s fork.s

.sect .text .extern __fork .define _fork .align 2 _fork: jmp __fork
www.eeworm.com/read/385548/2588395

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