minix/lib/libc/arch/i386/rts/__sigreturn.S
2010-03-03 14:27:30 +00:00

10 lines
287 B
ArmAsm

/* 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. */
.text
.globl ___sigreturn
.extern __sigreturn
___sigreturn:
addl $16, %esp
jmp __sigreturn