diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-05-20 08:31:36 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-05-20 08:31:36 +0000 |
commit | c2eb277b4dcd9cd8dde5bf8664b3eee2d8a0de6f (patch) | |
tree | c76882d717729c087c48381727083861530b58f0 /lib | |
parent | c59559c7dbe368f978bbc8acab55e616101eb1c7 (diff) |
save the old onfault where the handler expects it to be, do not zero out on exit, but restore
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/arch/hppa/string/bcopy.m4 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc/arch/hppa/string/bcopy.m4 b/lib/libc/arch/hppa/string/bcopy.m4 index db739d2ce4b..55ac9054d98 100644 --- a/lib/libc/arch/hppa/string/bcopy.m4 +++ b/lib/libc/arch/hppa/string/bcopy.m4 @@ -1,4 +1,4 @@ -define(_rcsid,``$OpenBSD: bcopy.m4,v 1.8 2002/03/08 06:17:09 mickey Exp $'')dnl +define(_rcsid,``$OpenBSD: bcopy.m4,v 1.9 2002/05/20 08:31:35 mickey Exp $'')dnl dnl dnl dnl This is the source file for bcopy.S, spcopy.S @@ -248,6 +248,7 @@ LEAF_ENTRY(spcopy) ldil L%copy_on_fault, t2 ldw P_ADDR(r31), r31 ldo R%copy_on_fault(t2), t2 + ldw PCB_ONFAULT+U_PCB(r31), r1 stw t2, PCB_ONFAULT+U_PCB(r31) ' mfsp sr2, ret0 /* XXX need this?, sr1 is scratchable */ @@ -258,7 +259,7 @@ LEAF_ENTRY(spcopy) hppa_copy(spcopy, sr1, arg1, sr2, arg3, ret1, `+') /* reset fault handler */ - stw r0, PCB_ONFAULT+U_PCB(r31) + stw r1, PCB_ONFAULT+U_PCB(r31) mtsp ret0, sr2 L(spcopy, ret) bv 0(rp) |