remove or make static various unused __-prefixed symbols
[musl.git] / src / process / posix_spawnattr_sched.c
blob3143635bacc4f43b356affbf2a401e673bc7a1e4
1 #include <spawn.h>
2 #include <sched.h>
3 #include <errno.h>
5 int posix_spawnattr_getschedparam(const posix_spawnattr_t *restrict attr,
6 struct sched_param *restrict schedparam)
8 return ENOSYS;
11 int posix_spawnattr_setschedparam(posix_spawnattr_t *restrict attr,
12 const struct sched_param *restrict schedparam)
14 return ENOSYS;
17 int posix_spawnattr_getschedpolicy(const posix_spawnattr_t *restrict attr, int *restrict policy)
19 return ENOSYS;
22 int posix_spawnattr_setschedpolicy(posix_spawnattr_t *attr, int policy)
24 return ENOSYS;