| Commit message (Expand) | Author | Age | Files | Lines |
| * | make arch __set_thread_area backends hidden•••this is not a public interface, and does not even necessarily match
the syscall on all archs that have a syscall by that name.
on archs where it's implemented in C, no action on the source file is
needed; the hidden declaration in pthread_arch.h suffices.
| Rich Felker | 2018-09-12 | 1 | -0/+1 |
| * | make arch __clone backends hidden•••these are not a public interface and are not intended to be callable
from anywhere but the public clone function or other places in libc.
| Rich Felker | 2018-09-12 | 1 | -0/+1 |
| * | fix async thread cancellation on powerpc64•••entering the local entry point for __cancel from __cp_cancel is valid
if __cp_cancel was reached from __syscall_cp, since both are in libc
and share the same TOC pointer, but it is not valid if __cp_cancel was
reached when cancel_handler rewrote the program counter for
asynchronous cancellation of code outside libc.
to ensure __cancel is entered with a valid TOC pointer, recompute the
correct value in a PC-relative manner before jumping.
| Rich Felker | 2018-08-29 | 1 | -0/+7 |
| * | add powerpc64 port | Bobby Bingham | 2016-05-08 | 4 | -0/+101 |