Navigation

Operators and Keywords

Function List:

C++ API

syswait.h File Reference

#include <sys/types.h>
Include dependency graph for syswait.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Defines

#define WIFEXITED(stat_val)   (((stat_val) & 255) == 0)
#define WEXITSTATUS(stat_val)   ((unsigned)(stat_val) >> 8)
#define WIFSIGNALLED(stat_val)   (((stat_val) & 0177) != 0177 && ((stat_val) & 0177) != 0)
#define WAITPID(a, b, c)   waitpid (a, b, c)

Define Documentation

#define WAITPID (   a,
  b,
  c 
)    waitpid (a, b, c)
#define WEXITSTATUS (   stat_val  )     ((unsigned)(stat_val) >> 8)
#define WIFEXITED (   stat_val  )     (((stat_val) & 255) == 0)
#define WIFSIGNALLED (   stat_val  )     (((stat_val) & 0177) != 0177 && ((stat_val) & 0177) != 0)
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines