Module Name:    src
Committed By:   matt
Date:           Sat Feb 15 17:48:09 UTC 2014

Modified Files:
        src/sys/rump/librump/rumpkern [matt-nb5-mips64]: emul.c

Log Message:
Add vpanic


To generate a diff of this commit:
cvs rdiff -u -r1.53 -r1.53.8.1 src/sys/rump/librump/rumpkern/emul.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/rump/librump/rumpkern/emul.c
diff -u src/sys/rump/librump/rumpkern/emul.c:1.53 src/sys/rump/librump/rumpkern/emul.c:1.53.8.1
--- src/sys/rump/librump/rumpkern/emul.c:1.53	Tue Oct 14 10:42:27 2008
+++ src/sys/rump/librump/rumpkern/emul.c	Sat Feb 15 17:48:09 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: emul.c,v 1.53 2008/10/14 10:42:27 pooka Exp $	*/
+/*	$NetBSD: emul.c,v 1.53.8.1 2014/02/15 17:48:09 matt Exp $	*/
 
 /*
  * Copyright (c) 2007 Antti Kantee.  All Rights Reserved.
@@ -92,6 +92,16 @@ int domainnamelen;
 const struct filterops seltrue_filtops;
 
 void
+vpanic(const char *fmt, va_list ap)
+{
+
+	printf("panic: ");
+	vprintf(fmt, ap);
+	printf("\n");
+	abort();
+}
+
+void
 panic(const char *fmt, ...)
 {
 	va_list ap;

Reply via email to