From ab7525a628aff7d5afbce9b17398ba8e0bb9333d Mon Sep 17 00:00:00 2001 From: "Michael I. Bushnell" Date: Thu, 21 Apr 1994 19:57:46 +0000 Subject: entered into RCS --- boot/sigvec.S | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 boot/sigvec.S (limited to 'boot/sigvec.S') diff --git a/boot/sigvec.S b/boot/sigvec.S new file mode 100644 index 00000000..497cefe5 --- /dev/null +++ b/boot/sigvec.S @@ -0,0 +1,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 -- cgit v1.2.3