mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
* sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_runtime_resolve):
Don't clobber caller's LRSAVE. (_dl_prof_resolve): Likewise.
This commit is contained in:
@ -206,6 +206,15 @@ __free_tcb (struct pthread *pd)
|
||||
running thread is gone. */
|
||||
abort ();
|
||||
|
||||
/* Free TPP data. */
|
||||
if (__builtin_expect (pd->tpp != NULL, 0))
|
||||
{
|
||||
struct priority_protection_data *tpp = pd->tpp;
|
||||
|
||||
pd->tpp = NULL;
|
||||
free (tpp);
|
||||
}
|
||||
|
||||
/* Queue the stack memory block for reuse and exit the process. The
|
||||
kernel will signal via writing to the address returned by
|
||||
QUEUE-STACK when the stack is available. */
|
||||
|
Reference in New Issue
Block a user