summaryrefslogtreecommitdiff
path: root/kern/debug.c
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1998-04-24 17:25:59 +0000
committerThomas Bushnell <thomas@gnu.org>1998-04-24 17:25:59 +0000
commite21c918cb0f7c6962d3f0f692c7384072adf5207 (patch)
tree2c3185ff0f9ca68aac182299bc53fa53e5d6fd7f /kern/debug.c
parent252f5a8afe6b5b111892b36afb93c70921f89290 (diff)
Fri Apr 24 13:19:40 1998 Thomas Bushnell n/BSG <thomas@melange.gnu.org>
* kern/debug.c (panic): Increase "seconds" in delay to 1000; machines are faster now.
Diffstat (limited to 'kern/debug.c')
-rw-r--r--kern/debug.c2
1 files changed, 1 insertions, 1 deletions
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 */
}