summaryrefslogtreecommitdiff
path: root/boot/sigvec.S
blob: 497cefe5eecd94313622cc52ee229da8cb3ca516 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
.globl _sigreturn
_sigreturn:
	movl $0x67,%eax
	lcall $0x7,$0x0
	ret

.globl __sigreturn
__sigreturn:
	addl $0xc,%esp
	call _sigreturn
	ret

.globl _sigvec
_sigvec:
	movl $0x6c,%eax
	movl $__sigreturn,%edx
	orl $0x80000000,%edx
	lcall $0x7,$0x0
	ret