diff options
Diffstat (limited to 'src/signal/i386')
-rw-r--r-- | src/signal/i386/restore.s | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/signal/i386/restore.s b/src/signal/i386/restore.s new file mode 100644 index 00000000..e0c4ab66 --- /dev/null +++ b/src/signal/i386/restore.s @@ -0,0 +1,15 @@ +.global __restore +.type __restore,%function +__restore: + popl %eax + movl $119, %eax + int $0x80 +.size __restore,.-__restore + +.global __restore_rt +.type __restore_rt,%function +__restore_rt: + movl $173, %eax + int $0x80 +.size __restore_rt,.-__restore_rt + |