file actions are not yet implemented, but everything else should be mostly complete and roughly correct.
7 lines
136 B
C
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;
|
|
}
|