From e21c918cb0f7c6962d3f0f692c7384072adf5207 Mon Sep 17 00:00:00 2001 From: Thomas Bushnell Date: Fri, 24 Apr 1998 17:25:59 +0000 Subject: Fri Apr 24 13:19:40 1998 Thomas Bushnell n/BSG * kern/debug.c (panic): Increase "seconds" in delay to 1000; machines are faster now. --- kern/debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kern/debug.c b/kern/debug.c index eda5b2a..26c402d 100644 --- a/kern/debug.c +++ b/kern/debug.c @@ -159,7 +159,7 @@ panic(s, va_alist) /* Give the user time to see the message */ { - int i = 60; /* seconds */ + int i = 1000; /* seconds */ while (i--) delay (1000000); /* microseconds */ } -- cgit v1.2.3