#include <stdbool.h>
#include <sys/types.h>
Go to the source code of this file.
Functions | |
OCTAVE_API pid_t | octave_waitpid_wrapper (pid_t pid, int *statusp, int options) |
OCTAVE_API int | octave_wcontinue_wrapper (void) |
OCTAVE_API int | octave_wcoredump_wrapper (int status) |
OCTAVE_API int | octave_wexitstatus_wrapper (int status) |
OCTAVE_API bool | octave_wifcontinued_wrapper (int status) |
OCTAVE_API bool | octave_wifexited_wrapper (int status) |
OCTAVE_API bool | octave_wifsignaled_wrapper (int status) |
OCTAVE_API bool | octave_wifstopped_wrapper (int status) |
OCTAVE_API int | octave_wnohang_wrapper (void) |
OCTAVE_API int | octave_wstopsig_wrapper (int status) |
OCTAVE_API int | octave_wtermsig_wrapper (int status) |
OCTAVE_API int | octave_wuntraced_wrapper (void) |
OCTAVE_API pid_t octave_waitpid_wrapper | ( | pid_t | pid, |
int * | statusp, | ||
int | options | ||
) |
Definition at line 61 of file wait-wrappers.c.
References waitpid().
OCTAVE_API int octave_wcontinue_wrapper | ( | void | ) |
OCTAVE_API int octave_wcoredump_wrapper | ( | int | status | ) |
Definition at line 132 of file wait-wrappers.c.
Referenced by wcoredump().
OCTAVE_API int octave_wexitstatus_wrapper | ( | int | status | ) |
Definition at line 138 of file wait-wrappers.c.
Referenced by main(), run_command(), and wexitstatus().
OCTAVE_API bool octave_wifcontinued_wrapper | ( | int | status | ) |
Definition at line 144 of file wait-wrappers.c.
References WIFCONTINUED.
Referenced by wifcontinued().
OCTAVE_API bool octave_wifexited_wrapper | ( | int | status | ) |
Definition at line 150 of file wait-wrappers.c.
Referenced by main(), run_command(), and wifexited().
OCTAVE_API bool octave_wifsignaled_wrapper | ( | int | status | ) |
Definition at line 156 of file wait-wrappers.c.
Referenced by main(), and wifsignaled().
OCTAVE_API bool octave_wifstopped_wrapper | ( | int | status | ) |
Definition at line 162 of file wait-wrappers.c.
Referenced by wifstopped().
OCTAVE_API int octave_wnohang_wrapper | ( | void | ) |
OCTAVE_API int octave_wstopsig_wrapper | ( | int | status | ) |
Definition at line 168 of file wait-wrappers.c.
Referenced by wstopsig().
OCTAVE_API int octave_wtermsig_wrapper | ( | int | status | ) |
Definition at line 174 of file wait-wrappers.c.
Referenced by main(), and wtermsig().
OCTAVE_API int octave_wuntraced_wrapper | ( | void | ) |