|
int | posix_spawn_file_actions_init (FAR posix_spawn_file_actions_t *file_actions) |
| POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) More...
|
|
int | posix_spawn_file_actions_destroy (FAR posix_spawn_file_actions_t *file_actions) |
| POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) More...
|
|
int | posix_spawn_file_actions_addclose (FAR posix_spawn_file_actions_t *file_actions, int fd) |
| POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) More...
|
|
int | posix_spawn_file_actions_addopen (FAR posix_spawn_file_actions_t *file_actions, int fd, FAR const char *path, int oflags, mode_t mode) |
| POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) More...
|
|
int | posix_spawnattr_init (FAR posix_spawnattr_t *attr) |
| POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) More...
|
|
int | posix_spawnattr_getflags (FAR const posix_spawnattr_t *attr, FAR short *flags) |
| POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) More...
|
|
int | posix_spawnattr_getschedparam (FAR const posix_spawnattr_t *attr, FAR struct sched_param *param) |
| POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) More...
|
|
int | posix_spawnattr_getschedpolicy (FAR const posix_spawnattr_t *attr, FAR int *policy) |
| POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) More...
|
|
int | posix_spawnattr_getsigmask (FAR const posix_spawnattr_t *attr, FAR sigset_t *sigmask) |
| POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) More...
|
|
int | posix_spawnattr_setflags (FAR posix_spawnattr_t *attr, short flags) |
| POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) More...
|
|
int | posix_spawnattr_setschedparam (FAR posix_spawnattr_t *attr, FAR const struct sched_param *param) |
| POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) More...
|
|
int | posix_spawnattr_setschedpolicy (FAR posix_spawnattr_t *attr, int policy) |
| POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) More...
|
|
int | posix_spawnattr_setsigmask (FAR posix_spawnattr_t *attr, FAR const sigset_t *sigmask) |
| POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) More...
|
|
int | task_spawnattr_getstacksize (FAR const posix_spawnattr_t *attr, size_t *stacksize) |
| The task_spawnattr_getstacksize() function will obtain the value of the spawn-stacksize attribute from the attributes object referenced by attr. More...
|
|
int | task_spawnattr_setstacksize (FAR posix_spawnattr_t *attr, size_t stacksize) |
| The task_spawnattr_setstacksize() function shall set the spawn- stacksize attribute in an initialized attributes object referenced by attr. More...
|
|
void | posix_spawn_file_actions_dump (FAR posix_spawn_file_actions_t *file_actions) |
| POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) More...
|
|
void | posix_spawnattr_dump (FAR posix_spawnattr_t *attr) |
| POSIX APIs (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/) More...
|
|