diff options
Diffstat (limited to 'sysdeps/nptl')
-rw-r--r-- | sysdeps/nptl/aio_misc.h | 4 | ||||
-rw-r--r-- | sysdeps/nptl/pthreadP.h | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/nptl/aio_misc.h b/sysdeps/nptl/aio_misc.h index a5c439fab5..d85f9c2fef 100644 --- a/sysdeps/nptl/aio_misc.h +++ b/sysdeps/nptl/aio_misc.h @@ -39,7 +39,7 @@ \ if (oldval != 0) \ { \ - pthread_mutex_unlock (&__aio_requests_mutex); \ + __pthread_mutex_unlock (&__aio_requests_mutex); \ \ int status; \ do \ @@ -67,7 +67,7 @@ else \ assert (status == 0 || status == EAGAIN); \ \ - pthread_mutex_lock (&__aio_requests_mutex); \ + __pthread_mutex_lock (&__aio_requests_mutex); \ } \ } while (0) diff --git a/sysdeps/nptl/pthreadP.h b/sysdeps/nptl/pthreadP.h index ca96ff073b..374657a2fd 100644 --- a/sysdeps/nptl/pthreadP.h +++ b/sysdeps/nptl/pthreadP.h @@ -337,6 +337,7 @@ libc_hidden_proto (__pthread_get_minstack) /* Namespace save aliases. */ extern int __pthread_getschedparam (pthread_t thread_id, int *policy, struct sched_param *param); +libc_hidden_proto (__pthread_getschedparam) extern int __pthread_setschedparam (pthread_t thread_id, int policy, const struct sched_param *param); extern int __pthread_mutex_init (pthread_mutex_t *__mutex, |