wait.h
来自「cfront是最开始c++语言到C语言的转换工具」· C头文件 代码 · 共 77 行
H
77 行
/*ident "@(#)cls4:incl-master/proto-headers/sys/wait.h 1.1" */#usedby all/******************************************************************************* C++ source for the C++ Language System, Release 3.0. This productis a new release of the original cfront developed in the computerscience research center of AT&T Bell Laboratories.Copyright (c) 1991 AT&T and UNIX System Laboratories, Inc.Copyright (c) 1984, 1989, 1990 AT&T. All Rights Reserved.THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE of AT&T and UNIX SystemLaboratories, Inc. The copyright notice above does not evidenceany actual or intended publication of such source code.*******************************************************************************/#ifndef __WAIT_H#define __WAIT_H#os bsd2 bsd3 sunos3 sunos4 sunos4.1 alliant#ifndef __RESOURCE_H#include <sys/resource.h>#endif#endos#os hpux sunos4.1 svr4#hide waitpid#endos#os svr4#hide wait#hide waitid#endos#os bsd2 bsd3 sunos3 sunos4 sunos4.1 alliant hpux2.0 hpux svr4#expand sys/wait.h#endosextern "C" {#os hpux2.0 svr2 svr3 sgi uts int wait(int*);#endos#os hpux2.0 int wait3(int*, int, int*);#endos#os hpux svr4 pid_t wait(int*); pid_t waitpid(pid_t, int*, int);#endos#os hpux pid_t wait3(int*, int, int*);#endos#os svr4 int waitid(idtype_t, id_t, siginfo_t *, int);#endos#os bsd2 bsd3 sunos3 sunos4 alliant int wait(union wait*); int wait3(union wait*, int, struct rusage*);#endos#os sunos4 int wait4(int, union wait*, int, struct rusage*);#endos#os sunos4.1 int wait(int*); int wait3(int*, int, struct rusage*); int wait4(int, int*, int, struct rusage*); int waitpid(int, int*, int);#endos}#os inline int wait(int *stat) { return wait((union wait*)stat); }inline int wait(int stat) { return wait((union wait*)stat); }#endos#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?