diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-02-22 18:30:52 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-02-22 18:30:52 +0100 |
commit | b5be9ae77e3e266ed83f84f0bb29198d71211aa8 (patch) | |
tree | 82029d682e3ba2b23a7eb013158cbabf76cb0ed2 /nptl/futex-internal.c | |
parent | 2f4019de81024cc0d05a5b5cedb1afb28b59a836 (diff) | |
download | glibc-b5be9ae77e3e266ed83f84f0bb29198d71211aa8.zip glibc-b5be9ae77e3e266ed83f84f0bb29198d71211aa8.tar.gz glibc-b5be9ae77e3e266ed83f84f0bb29198d71211aa8.tar.bz2 |
nptl: Move futex-internal into libc
This moves __futex_abstimed_wait64 and
__futex_abstimed_wait_cancelable64 and exports these functions as
GLIBC_PRIVATE.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'nptl/futex-internal.c')
-rw-r--r-- | nptl/futex-internal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/futex-internal.c b/nptl/futex-internal.c index 89b4ba7..850bf4f 100644 --- a/nptl/futex-internal.c +++ b/nptl/futex-internal.c @@ -112,7 +112,7 @@ __futex_abstimed_wait64 (unsigned int* futex_word, unsigned int expected, return __futex_abstimed_wait_common64 (futex_word, expected, clockid, abstime, private, false); } -libpthread_hidden_def (__futex_abstimed_wait64) +libc_hidden_def (__futex_abstimed_wait64) int __futex_abstimed_wait_cancelable64 (unsigned int* futex_word, @@ -123,4 +123,4 @@ __futex_abstimed_wait_cancelable64 (unsigned int* futex_word, return __futex_abstimed_wait_common64 (futex_word, expected, clockid, abstime, private, true); } -libpthread_hidden_def (__futex_abstimed_wait_cancelable64) +libc_hidden_def (__futex_abstimed_wait_cancelable64) |