blob: 06bb2408750a146bca1fe6877a740b9f63f96ebd (
plain)
1
2
3
4
5
6
7
8
9
|
.text
.type __restore_rt,@function
.global __restore_rt
.align 8
__restore_rt:
movl $__NR_rt_sigreturn,%eax
int $0x80
hlt /* die if syscall returns */
.size __restore_rt,.-__restore_rt
|