代码搜索:waitpid
找到约 797 项符合「waitpid」的源代码
代码结果 797
www.eeworm.com/read/400494/2351353
s __waitpid.s
/* Copyright (C) 1993, 1994 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the
www.eeworm.com/read/400494/2352444
c waitpid.c
/* Copyright (C) 1991, 1992 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the
www.eeworm.com/read/396039/2425211
c waitpid.c
/*
* waitpid.c --
*
* This procedure emulates the POSIX waitpid kernel call on
* BSD systems that don't have waitpid but do have wait3.
* This code is based on a prototype version written by
*
www.eeworm.com/read/395929/2427913
c waitpid.c
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef HAVE_SYS_WAIT_H
#include
#endif
int
waitpid (pid, stat_loc, options)
int pid, *stat_loc, options;
{
for (;;)
{
int wpi
www.eeworm.com/read/395229/2444670
c waitpid.c
#include
#include
#include
#include
#include
__pid_t __libc_waitpid(__pid_t pid, int *wait_stat, int options)
{
return wait4(p
www.eeworm.com/read/389922/2530667
c _waitpid.c
#include
#define waitpid _waitpid
#include
PUBLIC pid_t waitpid(pid, status, options)
pid_t pid;
int *status;
int options;
{
message m;
m.m1_i1 = pid;
m.m1_i2 = options;
www.eeworm.com/read/389922/2531071
s waitpid.s
.sect .text
.extern __waitpid
.define _waitpid
.align 2
_waitpid:
jmp __waitpid
www.eeworm.com/read/367182/2851521
c waitpid.c
/* Copyright (C) 1991,95,96,97,2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under
www.eeworm.com/read/367182/2852203
c waitpid.c
/* Copyright (C) 1991,92,95,96,97,2002,2003 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify i