mirror of
https://github.com/fluencelabs/musl
synced 2025-05-21 11:41:29 +00:00
24 lines
430 B
C
24 lines
430 B
C
#include "pthread_impl.h"
|
|
|
|
void __do_cleanup_push();
|
|
void __do_cleanup_pop();
|
|
|
|
void _pthread_cleanup_push(struct __ptcb *cb, void (*f)(void *), void *x)
|
|
{
|
|
cb->__f = f;
|
|
cb->__x = x;
|
|
__do_cleanup_push(cb, f, x);
|
|
}
|
|
|
|
void _pthread_cleanup_pop(struct __ptcb *cb, int run)
|
|
{
|
|
__do_cleanup_pop(cb, run);
|
|
if (run) cb->__f(cb->__x);
|
|
}
|
|
|
|
static void dummy()
|
|
{
|
|
}
|
|
weak_alias(dummy, __do_cleanup_push);
|
|
weak_alias(dummy, __do_cleanup_pop);
|