blob: 94d7148ddfee602424f590dd7bd7094430f66a85 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* Copyright 2011-2012 Nicholas J. Kain, licensed under standard MIT license */
.global sigsetjmp
.type sigsetjmp,@function
sigsetjmp:
andl %esi,%esi
movq %rsi,64(%rdi)
jz 1f
pushq %rdi
leaq 72(%rdi),%rsi
xorl %edx,%edx
movl $2,%edi
call sigprocmask
popq %rdi
1: jmp setjmp
|