From 8fbb33b3f74560ea3c74d289bdf59cffce52b463 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Tue, 11 May 2021 11:08:00 +0200 Subject: nptl: Move __free_tcb into libc Under the name __nptl_free_tcb. Reviewed-by: Adhemerval Zanella --- nptl/pthread_detach.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nptl/pthread_detach.c') diff --git a/nptl/pthread_detach.c b/nptl/pthread_detach.c index 57293ec..410255b 100644 --- a/nptl/pthread_detach.c +++ b/nptl/pthread_detach.c @@ -49,7 +49,7 @@ __pthread_detach (pthread_t th) if ((pd->cancelhandling & EXITING_BITMASK) != 0) /* Note that the code in __free_tcb makes sure each thread control block is freed only once. */ - __free_tcb (pd); + __nptl_free_tcb (pd); return result; } -- cgit v1.1