GNU Octave  3.8.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Macros
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.

Macros

#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)

Macro Definition Documentation

#define WAITPID (   a,
  b,
 
)    waitpid (a, b, c)

Definition at line 58 of file syswait.h.

Referenced by main(), and octave_waitpid().

#define WEXITSTATUS (   stat_val)    ((unsigned)(stat_val) >> 8)

Definition at line 43 of file syswait.h.

Referenced by main(), and octave_wexitstatus().

#define WIFEXITED (   stat_val)    (((stat_val) & 255) == 0)

Definition at line 39 of file syswait.h.

Referenced by main(), and octave_wifexited().

#define WIFSIGNALLED (   stat_val)    (((stat_val) & 0177) != 0177 && ((stat_val) & 0177) != 0)

Definition at line 47 of file syswait.h.

Referenced by main().