代码搜索:fork
找到约 4,354 项符合「fork」的源代码
代码结果 4,354
www.eeworm.com/read/169979/5407988
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/169979/5408092
c fork.c
/* orginal written by E. Mattes */
#include
#include
#include
#include
#ifdef __EMX__
#include
#include
#else
#include
www.eeworm.com/read/167046/5470266
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/167046/5470676
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/167046/5470709
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/163821/5508523
s fork.s
#include
#define ALIGN 2
/* Note: .abicalls goes at top of routine, and only one of them. */
#if defined(USER_ABICALLS)
#define ABISETUP \
.set
www.eeworm.com/read/163821/5508949
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/163821/5508953
c fork.c
#include
SYSCALL__ (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, and 0 (no bits set)
for the child. Then
www.eeworm.com/read/162868/5512696
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/162868/5512800
c fork.c
/* orginal written by E. Mattes */
#include
#include
#include
#include
#ifdef __EMX__
#include
#include
#else
#include