• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <spawn.h>
2 #include <unsupported_api.h>
3 
posix_spawnattr_getsigmask(const posix_spawnattr_t * restrict attr,sigset_t * restrict mask)4 int posix_spawnattr_getsigmask(const posix_spawnattr_t *restrict attr, sigset_t *restrict mask)
5 {
6 	UNSUPPORTED_API_VOID(LITEOS_A);
7 	*mask = attr->__mask;
8 	return 0;
9 }
10