代码搜索:fork
找到约 4,354 项符合「fork」的源代码
代码结果 4,354
www.eeworm.com/read/113399/6132064
c _fork.c
#include
#define fork _fork
#include
PUBLIC pid_t fork()
{
message m;
return(_syscall(MM, FORK, &m));
}
www.eeworm.com/read/112192/6147955
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/111305/6158204
java fork.java
package org.jgpd.io.jbpm.definition;
public interface Fork extends Node {
}
www.eeworm.com/read/110301/6165394
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/110301/6165498
c fork.c
/* orginal written by E. Mattes */
#include
#include
#include
#include
#ifdef __EMX__
#include
#include
#else
#include
www.eeworm.com/read/101135/6238004
2 fork.2
FORK(2) Minix Programmer's Manual FORK(2)
NAME
fork - create a new process
SYNOPSIS
#include
#include
www.eeworm.com/read/101135/6238107
2 fork.2
%!PS-Adobe-1.0
%%Creator: devps (Pipeline Associates, Inc.)
%%CreationDate: Fri Sep 13 13:05:41 1996
%%Pages: (atend)
%%DocumentFonts: (atend)
/devps 180 dict def devps begin
/res 10.000000 def
/y_of
www.eeworm.com/read/101135/6238856
2 fork.2
.\" Copyright (c) 1980 Regents of the University of California.
.\" All rights reserved. The Berkeley software License Agreement
.\" specifies the terms and conditions for redistribution.
.\"
.\" @(#
www.eeworm.com/read/101082/6240775
s fork.s
/* @(#)fork.s 4.1 (ULTRIX) 7/3/90 */
/* ------------------------------------------------------------------ */
/* | Copyright Unpublished, MIPS Computer Systems, Inc. All Rights | */
/* | Res
www.eeworm.com/read/101082/6241028
c fork.c
/* fork.c 4.1 82/12/04 */
#include "SYS.h"
SYSCALL(fork)
jlbc r1,1f # parent, since r1 == 0 in parent, 1 in child
clrl r0
1:
ret # pid = fork()