diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-06-25 10:30:35 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-06-25 11:48:25 +0200 |
commit | d12506b2dbbeb259468e0f06e87a98174e69a743 (patch) | |
tree | 7dd428bde261bd9f75ab54c86696a8220f203ef9 /sysdeps/nptl | |
parent | 97ed4749becdc20481688ee074e90507ca3501dd (diff) | |
download | glibc-d12506b2dbbeb259468e0f06e87a98174e69a743.tar.gz glibc-d12506b2dbbeb259468e0f06e87a98174e69a743.tar.xz glibc-d12506b2dbbeb259468e0f06e87a98174e69a743.zip |
Linux: Move aio_init from librt into libc
This commit also moves the aio_misc and aio_sigquue helper, so GLIBC_PRIVATE exports need to be added. The symbol was moved using scripts/move-symbol-to-libc.py. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
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, |