diff options
Diffstat (limited to 'libpthread/nptl/pthread_getschedparam.c')
-rw-r--r-- | libpthread/nptl/pthread_getschedparam.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libpthread/nptl/pthread_getschedparam.c b/libpthread/nptl/pthread_getschedparam.c index 10ad27142..2dd33acc0 100644 --- a/libpthread/nptl/pthread_getschedparam.c +++ b/libpthread/nptl/pthread_getschedparam.c @@ -24,10 +24,10 @@ int -__pthread_getschedparam (threadid, policy, param) - pthread_t threadid; - int *policy; - struct sched_param *param; +__pthread_getschedparam ( + pthread_t threadid, + int *policy, + struct sched_param *param) { struct pthread *pd = (struct pthread *) threadid; |