Module Name: src
Committed By: scole
Date: Sat Apr 8 17:47:14 UTC 2017
Modified Files:
src/sys/arch/ia64/ia64: trap.c
Log Message:
Add include and panic in startlwp()
To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/ia64/ia64/trap.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/ia64/ia64/trap.c
diff -u src/sys/arch/ia64/ia64/trap.c:1.13 src/sys/arch/ia64/ia64/trap.c:1.14
--- src/sys/arch/ia64/ia64/trap.c:1.13 Mon Mar 10 13:47:45 2014
+++ src/sys/arch/ia64/ia64/trap.c Sat Apr 8 17:47:14 2017
@@ -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 @@ __KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.1
#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 @@ trap_decode_break(struct trapframe *tf)
void
startlwp(void *arg)
{
-printf("%s: not yet\n", __func__);
- return;
+ panic("XXX %s implement", __func__);
}
#ifdef DDB