Ignore:
Timestamp:
Nov 14, 2004, 12:28:29 PM (21 years ago)
Author:
bird
Message:

More signals and waiting stuff.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/include/sys/wait.h

    • Property cvs2svn:cvs-rev changed from 1.5 to 1.6
    r1629 r1630  
    103103pid_t   wait(int *);
    104104pid_t   waitpid(pid_t, int *, int);
    105 #if 0 /* bird: old __BSD_VISIBLE */
    106105struct rusage;
    107106pid_t   wait3(int *, int, struct rusage *);
    108107pid_t   wait4(pid_t, int *, int, struct rusage *);
    109 #endif
    110108
    111109
     
    118116/** Wait for processes that have exited. */
    119117#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
    124123
    125124/* The following values are used by the `waitid' function.  */
Note: See TracChangeset for help on using the changeset viewer.