author | Rich Felker <dalias@aerifal.cx> | 2018年09月10日 16:13:29 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018年09月12日 14:34:32 -0400 |
commit | fe61a7aa53e68e8a17b5eb8d502e6fa314139ced (patch) | |
tree | 76624120cdf978e0d5c3a995d27e09eeba1a1151 /include/spawn.h | |
parent | 039f1b3c564667ab6fc9955bd892c2e527eb80b0 (diff) | |
download | musl-fe61a7aa53e68e8a17b5eb8d502e6fa314139ced.tar.gz |
-rw-r--r-- | include/spawn.h | 4 |
diff --git a/include/spawn.h b/include/spawn.h index bba57ce4..c9bd1939 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 { |