代码搜索:fork
找到约 4,354 项符合「fork」的源代码
代码结果 4,354
www.eeworm.com/read/298657/3859974
c fork.c
#include
#include
#include
#include "sys/syscall.h"
int errno;
int __trap0 ();
#define TRAP0(f, p1, p2, p3) __trap0(f, (p1), (p2), (p3))
int
_fork ()
{
retur
www.eeworm.com/read/298657/3860927
c fork.c
#include "config.h"
#include
#include
#include
int fork()
{
errno = ENOSYS;
return -1;
}
www.eeworm.com/read/298657/3861051
c fork.c
/* fork stub for MMIXware.
Copyright (C) 2001 Hans-Peter Nilsson
Permission to use, copy, modify, and distribute this software is
freely granted, provided that the above copyright notice, t
www.eeworm.com/read/292705/3948547
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/283358/4079832
c fork.c
/* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Jakub Jelinek , 2002.
The GNU C Library is free software;
www.eeworm.com/read/283358/4079835
h fork.h
/* Copyright (C) 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Jakub Jelinek , 2002.
The GNU C Library is free software; you ca
www.eeworm.com/read/283358/4079859
h fork.h
/* Copyright (C) 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper , 2002.
The GNU C Library is free software; you
www.eeworm.com/read/283358/4079871
h fork.h
/* Copyright (C) 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Jakub Jelinek , 2002.
The GNU C Library is free software; you ca
www.eeworm.com/read/279968/4129017
s fork.s
.globl _fork
.globl fork
_fork:
fork:
movl $2, %eax
lcall $7,$0
jb _cerror
testl %edx, %edx
je bye
xorl %eax,%eax
bye:
ret
www.eeworm.com/read/279968/4129024
c fork.c
#include
#include
#include
#include "sys/syscall.h"
int errno;
int __trap0 (int function, int p1, int p2, int p3);
#define TRAP0(f, p1, p2, p3) __trap0(f, (int)