X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Fspawn.h;h=8eb73e003a65e3cb40abdc3c47371084522b9864;hb=d8f35e29d0e35a90f44c04de585470c211afddf9;hp=bba57ce4975613b73fff1c2819fd95f8af7c53ec;hpb=77e895dcfadb156c9f378d26c9d0497ce2baf13f;p=musl diff --git a/include/spawn.h b/include/spawn.h index bba57ce4..8eb73e00 100644 --- a/include/spawn.h +++ b/include/spawn.h @@ -28,7 +28,9 @@ typedef struct { int __flags; pid_t __pgrp; sigset_t __def, __mask; - int __prio, __pol, __pad[16]; + int __prio, __pol; + void *__fn; + char __pad[64-sizeof(void *)]; } posix_spawnattr_t; typedef struct { @@ -69,6 +71,11 @@ int posix_spawn_file_actions_addopen(posix_spawn_file_actions_t *__restrict, int int posix_spawn_file_actions_addclose(posix_spawn_file_actions_t *, int); int posix_spawn_file_actions_adddup2(posix_spawn_file_actions_t *, int, int); +#if defined(_BSD_SOURCE) || defined(_GNU_SOURCE) +int posix_spawn_file_actions_addchdir_np(posix_spawn_file_actions_t *__restrict, const char *__restrict); +int posix_spawn_file_actions_addfchdir_np(posix_spawn_file_actions_t *, int); +#endif + #ifdef __cplusplus } #endif