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