Files
semi-libc/src/thread/aarch64/__unmapself.s
T
Szabolcs NagyandRich Felker 01ef3dd9c5 add aarch64 port
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.
2015-03-11 20:12:35 -04:00

8 lines
128 B
ArmAsm

.global __unmapself
.type __unmapself,%function
__unmapself:
mov x8,#215 // SYS_munmap
svc 0
mov x8,#93 // SYS_exit
svc 0