Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/m68k/m68k Use _C_LABEL() for [fs]ubail symbols.
details: https://anonhg.NetBSD.org/src/rev/cb6c36d10e14
branches: trunk
changeset: 472548:cb6c36d10e14
user: kleink <kleink%NetBSD.org@localhost>
date: Sat May 01 19:17:06 1999 +0000
description:
Use _C_LABEL() for [fs]ubail symbols.
diffstat:
sys/arch/m68k/m68k/copy.s | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 102b67fb76d6 -r cb6c36d10e14 sys/arch/m68k/m68k/copy.s
--- a/sys/arch/m68k/m68k/copy.s Sat May 01 19:11:34 1999 +0000
+++ b/sys/arch/m68k/m68k/copy.s Sat May 01 19:17:06 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: copy.s,v 1.33 1999/03/24 05:51:02 mrg Exp $ */
+/* $NetBSD: copy.s,v 1.34 1999/05/01 19:17:06 kleink Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -411,7 +411,7 @@
CHECK_SFC
movl sp@(4),a0 | address to read
movl _C_LABEL(curpcb),a1 | set fault handler
- movl #_fubail,a1@(PCB_ONFAULT)
+ movl #_C_LABEL(fubail),a1@(PCB_ONFAULT)
moveq #0,d0
movsw a0@,d0 | do read from user space
bra Lfdone
@@ -482,7 +482,7 @@
movl sp@(4),a0 | address to write
movw sp@(10),d0 | value to put there
movl _C_LABEL(curpcb),a1 | set fault handler
- movl #_subail,a1@(PCB_ONFAULT)
+ movl #_C_LABEL(subail),a1@(PCB_ONFAULT)
movsw d0,a0@ | do write to user space
moveq #0,d0 | indicate no fault
bra Lsdone
Home |
Main Index |
Thread Index |
Old Index