posix_spawnattr_getsigmask.c 154 B

1234567
  1. #include <spawn.h>
  2. int posix_spawnattr_getsigmask(const posix_spawnattr_t *restrict attr, sigset_t *restrict mask)
  3. {
  4. *mask = attr->__mask;
  5. return 0;
  6. }