Module Name: src
Committed By: scole
Date: Tue Nov 22 22:53:09 UTC 2016
Modified Files:
src/sys/arch/ia64/ia64: core_machdep.c
Log Message:
For ski, break into debugger instead of exiting
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/ia64/ia64/core_machdep.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/core_machdep.c
diff -u src/sys/arch/ia64/ia64/core_machdep.c:1.1 src/sys/arch/ia64/ia64/core_machdep.c:1.2
--- src/sys/arch/ia64/ia64/core_machdep.c:1.1 Fri Aug 5 16:50:07 2016
+++ src/sys/arch/ia64/ia64/core_machdep.c Tue Nov 22 22:53:09 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: core_machdep.c,v 1.1 2016/08/05 16:50:07 scole Exp $ */
+/* $NetBSD: core_machdep.c,v 1.2 2016/11/22 22:53:09 scole Exp $ */
/*-
* Copyright (c) 2016 The NetBSD Foundation, Inc.
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
-__KERNEL_RCSID(0, "$NetBSD: core_machdep.c,v 1.1 2016/08/05 16:50:07 scole Exp $");
+__KERNEL_RCSID(0, "$NetBSD: core_machdep.c,v 1.2 2016/11/22 22:53:09 scole Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -53,7 +53,7 @@ cpu_coredump(struct lwp *l, struct cored
struct core *chdr)
{
/* XXX implement, pause in ski */
- __asm __volatile("break.i 0");
+ __asm __volatile("break.i 1");
return -1;
}