#include <stdbool.h>
#include <sys/types.h>
Go to the source code of this file.
Functions | |
pid_t | octave_waitpid_wrapper (pid_t pid, int *statusp, int options) |
int | octave_wcontinue_wrapper (void) |
int | octave_wcoredump_wrapper (int status) |
int | octave_wexitstatus_wrapper (int status) |
bool | octave_wifcontinued_wrapper (int status) |
bool | octave_wifexited_wrapper (int status) |
bool | octave_wifsignaled_wrapper (int status) |
bool | octave_wifstopped_wrapper (int status) |
int | octave_wnohang_wrapper (void) |
int | octave_wstopsig_wrapper (int status) |
int | octave_wtermsig_wrapper (int status) |
int | octave_wuntraced_wrapper (void) |
pid_t octave_waitpid_wrapper | ( | pid_t | pid, |
int * | statusp, | ||
int | options | ||
) |
Definition at line 57 of file wait-wrappers.c.
References octave::sys::waitpid().
Referenced by main(), and octave::sys::waitpid().
int octave_wcontinue_wrapper | ( | void | ) |
Definition at line 74 of file wait-wrappers.c.
References WCONTINUE.
Referenced by octave::sys::wcontinue().
int octave_wcoredump_wrapper | ( | int | status | ) |
Definition at line 100 of file wait-wrappers.c.
Referenced by octave::sys::wcoredump().
int octave_wexitstatus_wrapper | ( | int | status | ) |
Definition at line 106 of file wait-wrappers.c.
Referenced by main(), run_command(), and octave::sys::wexitstatus().
bool octave_wifcontinued_wrapper | ( | int | status | ) |
Definition at line 112 of file wait-wrappers.c.
References WIFCONTINUED.
Referenced by octave::sys::wifcontinued().
bool octave_wifexited_wrapper | ( | int | status | ) |
Definition at line 118 of file wait-wrappers.c.
Referenced by main(), run_command(), and octave::sys::wifexited().
bool octave_wifsignaled_wrapper | ( | int | status | ) |
Definition at line 124 of file wait-wrappers.c.
Referenced by main(), and octave::sys::wifsignaled().
bool octave_wifstopped_wrapper | ( | int | status | ) |
Definition at line 130 of file wait-wrappers.c.
Referenced by octave::sys::wifstopped().
int octave_wnohang_wrapper | ( | void | ) |
Definition at line 80 of file wait-wrappers.c.
References WNOHANG.
Referenced by octave::sys::wnohang().
int octave_wstopsig_wrapper | ( | int | status | ) |
Definition at line 136 of file wait-wrappers.c.
Referenced by octave::sys::wstopsig().
int octave_wtermsig_wrapper | ( | int | status | ) |
Definition at line 142 of file wait-wrappers.c.
Referenced by main(), and octave::sys::wtermsig().
int octave_wuntraced_wrapper | ( | void | ) |
Definition at line 86 of file wait-wrappers.c.
References WUNTRACED.
Referenced by octave::sys::wuntraced().