Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-5]: src/sys/arch/arm26/arm26 Pull up rev. 1.3:
details: https://anonhg.NetBSD.org/src/rev/bb04300f27e6
branches: netbsd-1-5
changeset: 488389:bb04300f27e6
user: thorpej <thorpej%NetBSD.org@localhost>
date: Mon Jul 03 22:28:05 2000 +0000
description:
Pull up rev. 1.3:
Make cpu_coredump return ENOSYS rather than panicking.
diffstat:
sys/arch/arm26/arm26/stubs.c | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 9fe01f06d337 -r bb04300f27e6 sys/arch/arm26/arm26/stubs.c
--- a/sys/arch/arm26/arm26/stubs.c Mon Jul 03 22:27:31 2000 +0000
+++ b/sys/arch/arm26/arm26/stubs.c Mon Jul 03 22:28:05 2000 +0000
@@ -1,11 +1,11 @@
-/* $NetBSD: stubs.c,v 1.2 2000/05/13 17:57:15 bjh21 Exp $ */
+/* $NetBSD: stubs.c,v 1.2.4.1 2000/07/03 22:28:05 thorpej Exp $ */
/*
* stubs.c -- functions I haven't written yet
*/
#include <sys/param.h>
-__RCSID("$NetBSD: stubs.c,v 1.2 2000/05/13 17:57:15 bjh21 Exp $");
+__RCSID("$NetBSD: stubs.c,v 1.2.4.1 2000/07/03 22:28:05 thorpej Exp $");
#include <sys/kernel.h>
#include <sys/systm.h>
@@ -107,7 +107,8 @@
struct ucred *cred;
struct core *chdr;
{
- panic("cpu_coredump not implemented");
+ printf("FIXME: cpu_coredump() not implemented.\n");
+ return ENOSYS;
}
int
Home |
Main Index |
Thread Index |
Old Index