]> Zhao Yanbai Git Server - minix.git/commitdiff
Added paning variable to help routing debug output.
authorPhilip Homburg <philip@cs.vu.nl>
Mon, 24 Oct 2005 13:47:24 +0000 (13:47 +0000)
committerPhilip Homburg <philip@cs.vu.nl>
Mon, 24 Oct 2005 13:47:24 +0000 (13:47 +0000)
lib/sysutil/panic.c

index a3a479cea96b7ae08daa84ec95dec8569d22f9b7..b08621e45b8c696f3ae0b8e08145c80fdbf01295 100644 (file)
@@ -2,6 +2,8 @@
 
 #include "sysutil.h"
 
+int panicing= 0;
+
 /*===========================================================================*
  *                             panic                                        *
  *===========================================================================*/
@@ -16,6 +18,8 @@ int num;                      /* number to go with format string */
  */
   message m;
   void (*suicide)(void);
+
+  panicing= 1;
   if (NULL != who && NULL != mess) {
       if (num != NO_NUM) {
           printf("Panic in %s: %s: %d\n", who, mess, num);