Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/ia64/ia64 Add include and panic in startlwp()



details:   https://anonhg.NetBSD.org/src/rev/90786f8afe89
branches:  trunk
changeset: 822813:90786f8afe89
user:      scole <scole%NetBSD.org@localhost>
date:      Sat Apr 08 17:47:14 2017 +0000

description:
Add include and panic in startlwp()

diffstat:

 sys/arch/ia64/ia64/trap.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 457f660738da -r 90786f8afe89 sys/arch/ia64/ia64/trap.c
--- a/sys/arch/ia64/ia64/trap.c Sat Apr 08 17:46:30 2017 +0000
+++ b/sys/arch/ia64/ia64/trap.c Sat Apr 08 17:47:14 2017 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.13 2014/03/10 13:47:45 martin Exp $ */
+/* $NetBSD: trap.c,v 1.14 2017/04/08 17:47:14 scole Exp $ */
 
 /*-
  * Copyright (c) 2005 Marcel Moolenaar
@@ -61,7 +61,7 @@
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.13 2014/03/10 13:47:45 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.14 2017/04/08 17:47:14 scole Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -74,6 +74,7 @@
 #include <machine/frame.h>
 #include <machine/md_var.h>
 #include <machine/cpu.h>
+#include <machine/cpufunc.h>
 #include <machine/ia64_cpu.h>
 #include <machine/fpu.h>
 #ifdef DDB
@@ -319,8 +320,7 @@
 void
 startlwp(void *arg)
 {
-printf("%s: not yet\n", __func__);
-       return;
+       panic("XXX %s implement", __func__);
 }
 
 #ifdef DDB



Home | Main Index | Thread Index | Old Index