代码搜索:fork
找到约 4,354 项符合「fork」的源代码
代码结果 4,354
www.eeworm.com/read/300969/13874717
c sys_fork.c
#include "syslib.h"
PUBLIC int sys_fork(parent, child, pid, child_base_or_shadow)
int parent; /* process doing the fork */
int child; /* which proc has been created by the fork */
int pid;
www.eeworm.com/read/238485/13882348
h1 fork.h1
#ifndef FORK_H
#define FORK_H
extern int fork();
#define vfork fork
#endif
www.eeworm.com/read/238485/13882436
h2 fork.h2
#ifndef FORK_H
#define FORK_H
extern int fork();
extern int vfork();
#endif
www.eeworm.com/read/149876/5696278
exp foll-fork.exp
# Copyright (C) 1997 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# t
www.eeworm.com/read/149876/5696355
c foll-fork.c
#include
#include
#ifdef PROTOTYPES
void callee (int i)
#else
void callee (i)
int i;
#endif
{
printf("callee: %d\n", i);
}
#ifdef PROTOTYPES
int main (void)
#else
main ()
#
www.eeworm.com/read/148694/5711715
exp foll-fork.exp
# Copyright (C) 1997 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# t
www.eeworm.com/read/148694/5711792
c foll-fork.c
#include
#include
#ifdef PROTOTYPES
void callee (int i)
#else
void callee (i)
int i;
#endif
{
printf("callee: %d\n", i);
}
#ifdef PROTOTYPES
int main (void)
#else
main ()
#
www.eeworm.com/read/136812/5860596
c fork_test.c
#ifndef lint
static char sccsid[] = "@(#)fork_test.c 1.1 92/07/30 Copyr 1990 Sun Micro";
#endif
/*
* Copyright (c) 1990 by Sun Microsystems, Inc.
*/
#include
#include
extern
www.eeworm.com/read/131315/5932942
c kern_fork.c
/*
* Copyright (c) 1982, 1986, 1989, 1991, 1993
* The Regents of the University of California. All rights reserved.
* (c) UNIX System Laboratories, Inc.
* All or some portions of this file are de
www.eeworm.com/read/131315/5939132
c fork-child.c
/* Fork a Unix child process, and set up to debug it, for GDB.
Copyright 1990, 1991, 1992 Free Software Foundation, Inc.
Contributed by Cygnus Support.
This file is part of GDB.
This program i