mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-26 04:31:03 +00:00
htl: move __pthread_sigstate into libc.
Message-ID: <20241212220612.782313-2-gfleury@disroot.org>
This commit is contained in:
parent
dca0807a4d
commit
79cb83c7f9
@ -118,7 +118,6 @@ libpthread-routines := \
|
||||
pt-machdep \
|
||||
pt-spin \
|
||||
pt-sigstate-init \
|
||||
pt-sigstate \
|
||||
pt-kill \
|
||||
pt-getcpuclockid \
|
||||
pt-setschedprio \
|
||||
@ -210,6 +209,7 @@ routines := \
|
||||
pt-pthread_self \
|
||||
pt-self pt-equal \
|
||||
pt-setschedparam \
|
||||
pt-sigstate \
|
||||
pt-sigstate-destroy \
|
||||
# routines
|
||||
shared-only-routines = forward
|
||||
|
@ -94,6 +94,7 @@ libc {
|
||||
__pthread_attr_setstack;
|
||||
__pthread_condattr_init;
|
||||
__pthread_default_condattr;
|
||||
__pthread_sigstate;
|
||||
__pthread_sigstate_destroy;
|
||||
}
|
||||
}
|
||||
|
@ -313,6 +313,7 @@ extern error_t __pthread_sigstate (struct __pthread *__restrict thread, int how,
|
||||
const sigset_t *__restrict set,
|
||||
sigset_t *__restrict oset,
|
||||
int clear_pending);
|
||||
libc_hidden_proto (__pthread_sigstate)
|
||||
|
||||
/* If supported, check that MUTEX is locked by the caller. */
|
||||
extern int __pthread_mutex_checklocked (pthread_mutex_t *mtx);
|
||||
|
@ -82,3 +82,4 @@ __pthread_sigstate (struct __pthread *thread, int how,
|
||||
|
||||
return err;
|
||||
}
|
||||
libc_hidden_def (__pthread_sigstate)
|
||||
|
Loading…
Reference in New Issue
Block a user