aboutsummaryrefslogtreecommitdiff
path: root/libc/print.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/print.c')
-rw-r--r--libc/print.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/libc/print.c b/libc/print.c
index 3f6c1cd..ef51e1f 100644
--- a/libc/print.c
+++ b/libc/print.c
@@ -3,6 +3,7 @@
#include <arg.h>
#include <assert.h>
#include <conv.h>
+#include <cpu.h>
#include <def.h>
#include <mem.h>
#include <serial.h>
@@ -217,14 +218,17 @@ int print(const char *str)
void panic(const char *format, ...)
{
+ char buf[1024] = { 0 };
va_list ap;
va_start(ap, format);
+ vsprintf(buf, format, ap);
+ va_end(ap);
#ifdef kernel
- vprintf(format, ap);
+ print(buf);
+ loop();
#else
- vfprintf(PATH_ERR, format, ap);
+ err(1, buf);
#endif
- va_end(ap);
-
- assert(0);
+ while (1)
+ ;
}