summaryrefslogtreecommitdiff
path: root/src/thread/aarch64/__set_thread_area.s
AgeCommit message (Collapse)AuthorLines
2025-07-12aarch64: replace asm source file for __set_thread_area with inline asmRich Felker-7/+0
this change both aligns with the intended future direction for most assembly usage, and makes it possible to add arch-specific setup logic based on hwcaps like we have for 32-bit arm.
2018-09-12make arch __set_thread_area backends hiddenRich Felker-0/+1
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.
2015-03-11add aarch64 portSzabolcs Nagy-0/+6
This adds complete aarch64 target support including bigendian subarch. Some of the long double math functions are known to be broken otherwise interfaces should be fully functional, but at this point consider this port experimental. Initial work on this port was done by Sireesh Tripurari and Kevin Bortis.