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:
gfleury 2024-12-19 22:37:21 +02:00 committed by Samuel Thibault
parent 8735ea79ab
commit 4ab765c6ba
4 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -101,6 +101,7 @@ libc {
__pthread_sigstate;
__pthread_sigstate_destroy;
__pthread_sigmask;
__pthread_wakeup;
}
}

View File

@ -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. */

View File

@ -35,3 +35,4 @@ __pthread_wakeup (struct __pthread *thread)
0, MACH_PORT_NULL);
assert_perror (err);
}
libc_hidden_def (__pthread_wakeup)