diff options
Diffstat (limited to 'libc/arch-sh/syscalls/_exit_thread.S')
-rw-r--r-- | libc/arch-sh/syscalls/_exit_thread.S | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/libc/arch-sh/syscalls/_exit_thread.S b/libc/arch-sh/syscalls/_exit_thread.S new file mode 100644 index 0000000..536d000 --- /dev/null +++ b/libc/arch-sh/syscalls/_exit_thread.S @@ -0,0 +1,32 @@ +/* autogenerated by gensyscalls.py */ +#include <sys/linux-syscalls.h> + + .text + .type _exit_thread, @function + .globl _exit_thread + .align 4 + +_exit_thread: + + /* invoke trap */ + mov.l 0f, r3 /* trap num */ + trapa #(1 + 0x10) + + /* check return value */ + cmp/pz r0 + bt __NR_exit_end + + /* keep error number */ + sts.l pr, @-r15 + mov.l 1f, r1 + jsr @r1 + mov r0, r4 + lds.l @r15+, pr + +__NR_exit_end: + rts + nop + + .align 2 +0: .long __NR_exit +1: .long __set_syscall_errno |