blob: 8127ee49341e09a20327c8c52929a87d67162de4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
.section .text
.global __mlibc_signal_restore
.type __mlibc_signal_restore, @function
__mlibc_signal_restore:
popl %eax
mov $119, %eax
int $0x80
ud2
.global __mlibc_signal_restore_rt
.type __mlibc_signal_restore_rt, @function
__mlibc_signal_restore_rt:
mov $173, %eax
int $0x80
ud2
.section .note.GNU-stack,"",%progbits
|