Lines Matching refs:__restrict
41 int posix_spawn(pid_t * __restrict, const char * __restrict,
42 const posix_spawn_file_actions_t *, const posix_spawnattr_t * __restrict,
43 char * const *__restrict, char * const *__restrict);
44 int posix_spawnp(pid_t * __restrict, const char * __restrict,
45 const posix_spawn_file_actions_t *, const posix_spawnattr_t * __restrict,
46 char * const *__restrict, char * const *__restrict);
54 int posix_spawn_file_actions_addopen(posix_spawn_file_actions_t * __restrict,
55 int, const char * __restrict, int, mode_t);
59 int posix_spawn_file_actions_addchdir(posix_spawn_file_actions_t * __restrict,
60 const char * __restrict);
69 int posix_spawnattr_getflags(const posix_spawnattr_t * __restrict,
70 short * __restrict);
71 int posix_spawnattr_getpgroup(const posix_spawnattr_t * __restrict,
72 pid_t * __restrict);
73 int posix_spawnattr_getschedparam(const posix_spawnattr_t * __restrict,
74 struct sched_param * __restrict);
75 int posix_spawnattr_getschedpolicy(const posix_spawnattr_t * __restrict,
76 int * __restrict);
77 int posix_spawnattr_getsigdefault(const posix_spawnattr_t * __restrict,
78 sigset_t * __restrict);
79 int posix_spawnattr_getsigmask(const posix_spawnattr_t * __restrict,
80 sigset_t * __restrict sigmask);
84 int posix_spawnattr_setschedparam(posix_spawnattr_t * __restrict,
85 const struct sched_param * __restrict);
87 int posix_spawnattr_setsigdefault(posix_spawnattr_t * __restrict,
88 const sigset_t * __restrict);
89 int posix_spawnattr_setsigmask(posix_spawnattr_t * __restrict,
90 const sigset_t * __restrict);