mirror of
https://github.com/fluencelabs/musl
synced 2025-06-22 19:21:58 +00:00
use weak aliases rather than function pointers to simplify some code
This commit is contained in:
@ -58,7 +58,7 @@ static void cancel_handler(int sig, siginfo_t *si, void *ctx)
|
||||
__syscall(SYS_tgkill, self->pid, self->tid, SIGCANCEL);
|
||||
}
|
||||
|
||||
static void testcancel()
|
||||
void __testcancel()
|
||||
{
|
||||
pthread_t self = __pthread_self();
|
||||
if (self->cancel && !self->canceldisable)
|
||||
@ -73,7 +73,6 @@ static void init_cancellation()
|
||||
};
|
||||
sigfillset(&sa.sa_mask);
|
||||
__libc_sigaction(SIGCANCEL, &sa, 0);
|
||||
libc.testcancel = testcancel;
|
||||
}
|
||||
|
||||
int pthread_cancel(pthread_t t)
|
||||
|
Reference in New Issue
Block a user