⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wait.h

📁 早期freebsd实现
💻 H
字号:
/*************************************************************************** * This program is Copyright (C) 1986, 1987, 1988 by Jonathan Payne.  JOVE * * is provided to you without charge, and with no warranty.  You may give  * * away copies of JOVE, including sources, provided that this notice is    * * included in all the files.                                              * ***************************************************************************/#ifdef	BSD_WAIT# include <sys/wait.h># define w_termsignum(w)	((w).w_termsig)#else# define WIFSTOPPED(w)		(((w).w_status & 0377) == 0177)# define WIFEXITED(w)		(((w).w_status & 0377) == 0)# define WIFSIGNALED(w)		((((w).w_status >> 8) & 0377) == 0)# define w_termsignum(w)	((w).w_status & 0177)# define wait2(w, x)		wait(w)union wait {	int	w_status;};#endifextern void	kill_off proto((int, union wait));

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -