mirror of
git://sourceware.org/git/glibc.git
synced 2025-04-06 14:10:30 +08:00
htl: move __pthread_wakeup into libc.
Signed-off-by: gfleury <gfleury@disroot.org> Message-ID: <20241219203727.669825-3-gfleury@disroot.org>
This commit is contained in:
parent
8735ea79ab
commit
4ab765c6ba
@ -109,7 +109,6 @@ libpthread-routines := \
|
||||
pt-timedblock \
|
||||
pt-block-intr \
|
||||
pt-timedblock-intr \
|
||||
pt-wakeup \
|
||||
pt-docancel \
|
||||
pt-sysdep \
|
||||
pt-setup \
|
||||
@ -211,6 +210,7 @@ routines := \
|
||||
pt-sigmask \
|
||||
pt-sigstate \
|
||||
pt-sigstate-destroy \
|
||||
pt-wakeup \
|
||||
# routines
|
||||
shared-only-routines = forward
|
||||
|
||||
|
@ -101,6 +101,7 @@ libc {
|
||||
__pthread_sigstate;
|
||||
__pthread_sigstate_destroy;
|
||||
__pthread_sigmask;
|
||||
__pthread_wakeup;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -283,7 +283,7 @@ extern error_t __pthread_timedblock_intr (struct __pthread *__restrict thread,
|
||||
|
||||
/* Wakeup THREAD. */
|
||||
extern void __pthread_wakeup (struct __pthread *thread);
|
||||
|
||||
libc_hidden_proto (__pthread_wakeup)
|
||||
|
||||
/* Perform a cancelation. The CANCEL_LOCK member of the given thread must
|
||||
be locked before calling this function, which must unlock it. */
|
||||
|
@ -35,3 +35,4 @@ __pthread_wakeup (struct __pthread *thread)
|
||||
0, MACH_PORT_NULL);
|
||||
assert_perror (err);
|
||||
}
|
||||
libc_hidden_def (__pthread_wakeup)
|
||||
|
Loading…
x
Reference in New Issue
Block a user