musl/src/process/posix_spawnattr_getsigmask.c
Rich Felker c97f0d998c initial implementation of posix_spawn
file actions are not yet implemented, but everything else should be
mostly complete and roughly correct.
2011-05-28 18:36:30 -04:00

7 lines
136 B
C

#include <spawn.h>
int posix_spawnattr_getsigmask(const posix_spawnattr_t *attr, sigset_t *mask)
{
*mask = attr->__mask;
return 0;
}