mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
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>
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user