代码搜索:fork
找到约 4,354 项符合「fork」的源代码
代码结果 4,354
www.eeworm.com/read/279968/4129060
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/279968/4130018
c fork.c
#include "config.h"
#include
#include
#include
int fork()
{
errno = ENOSYS;
return -1;
}
www.eeworm.com/read/279968/4130142
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/277246/4157073
java fork.java
/*
* JBoss, Home of Professional Open Source
* Copyright 2005, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* ful
www.eeworm.com/read/447892/1694068
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/447892/1694172
c fork.c
/* orginal written by E. Mattes */
#include
#include
#include
#include
#ifdef __EMX__
#include
#include
#else
#include
www.eeworm.com/read/439725/1804956
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/439082/1818573
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/435701/1862005
c fork.c
#include
#include
int
fork(void)
{
return rfork(RFPROC|RFFDG|RFREND);
}
www.eeworm.com/read/428075/1962841
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