minix/lib/i386/rts/__sigreturn.s
2005-04-21 14:53:53 +00:00

11 lines
328 B
ArmAsm
Executable file

! This routine is the low-level code for returning from signals.
! It calls __sigreturn, which is the normal "system call" routine.
! Both ___sigreturn and __sigreturn are needed.
.sect .text; .sect .rom; .sect .data; .sect .bss
.sect .text
.define ___sigreturn
.extern __sigreturn
___sigreturn:
add esp, 16
jmp __sigreturn