Changeset 1630 for trunk/src/emx/include/sys/wait.h
- Timestamp:
- Nov 14, 2004, 12:28:29 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/sys/wait.h
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r1629 r1630 103 103 pid_t wait(int *); 104 104 pid_t waitpid(pid_t, int *, int); 105 #if 0 /* bird: old __BSD_VISIBLE */106 105 struct rusage; 107 106 pid_t wait3(int *, int, struct rusage *); 108 107 pid_t wait4(pid_t, int *, int, struct rusage *); 109 #endif110 108 111 109 … … 118 116 /** Wait for processes that have exited. */ 119 117 #define WEXITED 8 120 /** Wait for processes that have stopped. */ 121 #define WSTOPPED 16 122 /** Keep the wait state around for later wait calls, i.e. just peek at the stuff. */ 123 #define WNOWAIT 32 118 /** Wait for processes that have stopped. Same as WUNTRACED atm. */ 119 #define WSTOPPED WUNTRACED 120 /** Keep the wait state around for later wait calls, i.e. just peek at the stuff. 121 * Very logical name, not chance at all that anyone will confuse it for WNOHANG. */ 122 #define WNOWAIT 16 124 123 125 124 /* The following values are used by the `waitid' function. */ -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.