file actions are not yet implemented, but everything else should be mostly complete and roughly correct.
8 lines
136 B
C
8 lines
136 B
C
#include <spawn.h>
|
|
|
|
int posix_spawnattr_setsigmask(posix_spawnattr_t *attr, const sigset_t *mask)
|
|
{
|
|
attr->__mask = *mask;
|
|
return 0;
|
|
}
|