repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix fork of processes with active async io contexts
[musl.git]
/
src
/
process
/
posix_spawnattr_getflags.c
blob
aa635ddaf6a1703b1237608d540729a544e6d48e
1
#include <spawn.h>
2
3
int
posix_spawnattr_getflags
(
const
posix_spawnattr_t
*
restrict attr
,
short
*
restrict flags
)
4
{
5
*
flags
=
attr
->
__flags
;
6
return
0
;
7
}