summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2014-06-09 15:00:57 +0000
committermiod <miod@openbsd.org>2014-06-09 15:00:57 +0000
commitbe09dde9e7741d1ed83fd6056f21a8381c428db5 (patch)
treed9893b446423986de31777fcf8a31832b82f92dc
parentMore format string fixes (in 88110 code) (diff)
downloadwireguard-openbsd-be09dde9e7741d1ed83fd6056f21a8381c428db5.tar.xz
wireguard-openbsd-be09dde9e7741d1ed83fd6056f21a8381c428db5.zip
Doh, traps 128 and 129 need to point to sigsys, not unknown_vector.
-rw-r--r--sys/arch/m88k/m88k/vectors_88100.S6
-rw-r--r--sys/arch/m88k/m88k/vectors_88110.S6
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/m88k/m88k/vectors_88100.S b/sys/arch/m88k/m88k/vectors_88100.S
index 919bde7bffb..4a9ae842f38 100644
--- a/sys/arch/m88k/m88k/vectors_88100.S
+++ b/sys/arch/m88k/m88k/vectors_88100.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: vectors_88100.S,v 1.6 2014/06/08 13:20:39 miod Exp $ */
+/* $OpenBSD: vectors_88100.S,v 1.7 2014/06/09 15:00:57 miod Exp $ */
/*
* Mach Operating System
* Copyright (c) 1991, 1992 Carnegie Mellon University
@@ -78,8 +78,8 @@ GLOBAL(vector_list)
VECTOR(unknown_handler) /* 7d */
VECTOR(unimplemented_handler) /* 7e */
VECTOR(unknown_handler) /* 7f */
- VECTOR(unknown_handler) /* 80 */
- VECTOR(unknown_handler) /* 81 */
+ VECTOR(sigsys) /* 80 */
+ VECTOR(sigsys) /* 81 */
#ifdef DDB
VECTOR(break) /* 82 */
VECTOR(trace) /* 83 */
diff --git a/sys/arch/m88k/m88k/vectors_88110.S b/sys/arch/m88k/m88k/vectors_88110.S
index 856e2852f2d..d0ce6474a20 100644
--- a/sys/arch/m88k/m88k/vectors_88110.S
+++ b/sys/arch/m88k/m88k/vectors_88110.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: vectors_88110.S,v 1.8 2014/06/08 13:20:39 miod Exp $ */
+/* $OpenBSD: vectors_88110.S,v 1.9 2014/06/09 15:00:57 miod Exp $ */
/*
* Mach Operating System
* Copyright (c) 1991, 1992 Carnegie Mellon University
@@ -78,8 +78,8 @@ GLOBAL(m88110_vector_list)
VECTOR(m88110_unknown_handler) /* 7d */
VECTOR(m88110_unimplemented_handler) /* 7e */
VECTOR(m88110_unknown_handler) /* 7f */
- VECTOR(m88110_unknown_handler) /* 80 */
- VECTOR(m88110_unknown_handler) /* 81 */
+ VECTOR(m88110_sigsys) /* 80 */
+ VECTOR(m88110_sigsys) /* 81 */
#ifdef DDB
VECTOR(m88110_break) /* 82 */
VECTOR(m88110_trace) /* 83 */