diff --git a/src/sys/kernel/kpanic.c b/src/sys/kernel/kpanic.c index 4c33bd2..0b521f4 100644 --- a/src/sys/kernel/kpanic.c +++ b/src/sys/kernel/kpanic.c @@ -51,7 +51,8 @@ vsprintf(buf, fmt, args); vaEnd(args); - tty_foreground = NULL; // prevent printing on tty0, go to current. + /* It's important that we print on the current terminal so let's reset foregroune */ + tty_foreground = NULL; kprintf("kPanic: %s", buf); /* Halt The System */ @@ -63,34 +64,6 @@ } /*** - $Log$ - Revision 1.11 2004/09/14 21:34:30 apwillia - Keep kpanic msg on current tty - - Revision 1.10 2004/09/11 14:26:30 reddawg - Oops why did i disable irq 1 irq 0 is the timer... - - Revision 1.9 2004/09/11 14:23:34 reddawg - ok - - Revision 1.8 2004/09/08 07:33:38 reddawg - Fixes - - Revision 1.7 2004/07/31 21:52:17 reddawg - a few changes - - Revision 1.6 2004/07/16 04:13:01 reddawg - Clean - - Revision 1.5 2004/06/29 11:41:44 reddawg - Fixed some global variables - - Revision 1.4 2004/06/04 13:29:56 reddawg - libc: modified mkdir(); interface - kpanic: kPanic(); now says kPanic: %s - system: now reboots when receives message for reboot - also when command start sde is received by system the STD is started - END ***/ diff --git a/src/sys/kernel/vitals.c b/src/sys/kernel/vitals.c index ad44726..f947a61 100644 --- a/src/sys/kernel/vitals.c +++ b/src/sys/kernel/vitals.c @@ -68,37 +68,6 @@ } /*** - $Log$ - Revision 1.10 2004/08/14 11:23:02 reddawg - Changes - - Revision 1.9 2004/07/19 01:56:56 reddawg - vitals: cleaned up all defaults this should not cause any problems in the future - - Revision 1.8 2004/07/17 03:22:20 reddawg - Added asscerts - - Revision 1.7 2004/07/09 13:03:50 reddawg - vitals: named vitalsInit to vitals_init - Adjusted Startup Routines - - Revision 1.6 2004/06/18 13:05:47 solar - Changed the scheduler by adding the first rudiments of priority; vitals.c initializes the system's default quantum to 40 - - Revision 1.5 2004/06/16 12:04:18 reddawg - systemVitals->quantum = (1000/msPerQuantum) - The timer int now will call scheduler at the rate of the defined quantum - - Revision 1.4 2004/06/15 12:24:07 reddawg - Cleaned Up - - Revision 1.3 2004/05/19 04:07:43 reddawg - kmalloc(size,pid) no more it is no kmalloc(size); the way it should of been - - Revision 1.2 2004/05/15 02:30:28 reddawg - Lots of changes - END ***/ -