]> Zhao Yanbai Git Server - minix.git/commitdiff
Fixed a panic message
authorTomas Hruby <tom@minix3.org>
Wed, 7 Apr 2010 12:50:43 +0000 (12:50 +0000)
committerTomas Hruby <tom@minix3.org>
Wed, 7 Apr 2010 12:50:43 +0000 (12:50 +0000)
- exceptions cannot occur in kernel tasks as we don't have kernel
  tasks anymore

kernel/arch/i386/exception.c

index 7267008a28267bab84c21085184453e5dbf3620e..84cc18b3de258e03815fcf601c6d8142b6a55ef7 100644 (file)
@@ -229,7 +229,7 @@ PUBLIC void exception_handler(int is_nested, struct exception_frame * frame)
                          (unsigned) saved_proc->p_reg.pc);
          proc_stacktrace(saved_proc);
 
-         panic("exception in a kernel task: %d",  saved_proc->p_endpoint);
+         panic("Unhandled kernel exception");
   }
   else {
          /* in an early stage of boot process we don't have processes yet */