diff options
Diffstat (limited to 'src/thread/pthread_setschedparam.c')
-rw-r--r-- | src/thread/pthread_setschedparam.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/thread/pthread_setschedparam.c b/src/thread/pthread_setschedparam.c index 76d4d45a..4a920d12 100644 --- a/src/thread/pthread_setschedparam.c +++ b/src/thread/pthread_setschedparam.c @@ -12,3 +12,11 @@ int pthread_setschedparam(pthread_t t, int policy, const struct sched_param *par __restore_sigs(&set); return r; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |