代码搜索:fork

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

代码结果 4,354
www.eeworm.com/read/343891/3214688

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/340665/3268427

c fork.c

/* * Stub version of fork. */ #include "config.h" #include #include #include #undef errno extern int errno; #include "warning.h" int _DEFUN (_fork, (), _NO
www.eeworm.com/read/340665/3268522

c fork.c

#include #include #include #include "trap.h" int _fork () { return TRAP0 (SYS_fork, 0, 0, 0); }
www.eeworm.com/read/340665/3268870

c fork.c

#include #include #include #include "trap.h" int _fork () { return TRAP0 (SYS_fork, 0, 0, 0); }
www.eeworm.com/read/340665/3269248

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/340665/3269296

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)
www.eeworm.com/read/340665/3269338

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/340665/3270077

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/338072/3322852

c fork.c

/* * fork.c * * Description: * Implementation of fork() for POSIX threads. * * Pthreads-win32 - POSIX Threads Library for Win32 * Copyright (C) 1998 * * This library is free software
www.eeworm.com/read/328700/3436934

java fork.java

package cn.zucc.mmf.harpoon; import javax.microedition.lcdui.Image; import javax.microedition.lcdui.game.Sprite; import java.util.*; /* * To change this template, choose Tools | Templates * and o