panic() now results in a debugger call - it now longer exits the app.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19405 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2006-12-01 08:31:54 +00:00
parent d75bff02b3
commit b9a724e79f
+2 -1
View File
@@ -707,7 +707,8 @@ panic(const char *format, ...)
vprintf(format, args);
va_end(args);
exit(-1);
putchar('\n');
debugger("Kernel Panic");
}