diff options
Diffstat (limited to 'include/spawn.h')
| -rw-r--r-- | include/spawn.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/spawn.h b/include/spawn.h index a93315930954..636b20755238 100644 --- a/include/spawn.h +++ b/include/spawn.h @@ -123,6 +123,17 @@ int posix_spawnattr_setsigdefault(posix_spawnattr_t * __restrict, const sigset_t * __restrict); int posix_spawnattr_setsigmask(posix_spawnattr_t * __restrict, const sigset_t * __restrict); + +#if __BSD_VISIBLE +int posix_spawnattr_setexecfd_np(posix_spawnattr_t * __restrict, int); +int posix_spawnattr_setprocdescp_np(const posix_spawnattr_t * __restrict, + int * __restrict, int); +int posix_spawnattr_getexecfd_np(const posix_spawnattr_t * __restrict, + int * __restrict); +int posix_spawnattr_getprocdescp_np(const posix_spawnattr_t * __restrict, + int ** __restrict, int * __restrict); +#endif + __END_DECLS #endif /* !_SPAWN_H_ */ |
