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