summaryrefslogtreecommitdiff
path: root/src/kernel/lib
diff options
context:
space:
mode:
authorAlex AUVOLAT <alexis211@gmail.com>2012-05-17 17:56:23 +0200
committerAlex AUVOLAT <alexis211@gmail.com>2012-05-17 17:56:23 +0200
commit593bf4df3d8db49286c1a7ae4ef75c887b629930 (patch)
tree988a104c9611d72e1252282789688586efd9a394 /src/kernel/lib
parent7c9a48b4e6d66cf4f62e7bad9e22ab06923e47ef (diff)
downloadTCE-593bf4df3d8db49286c1a7ae4ef75c887b629930.tar.gz
TCE-593bf4df3d8db49286c1a7ae4ef75c887b629930.zip
Devices using the VFS structure. Basic keyboard handler.
Diffstat (limited to 'src/kernel/lib')
-rw-r--r--src/kernel/lib/std.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kernel/lib/std.cpp b/src/kernel/lib/std.cpp
index 7ab4f64..aa5f606 100644
--- a/src/kernel/lib/std.cpp
+++ b/src/kernel/lib/std.cpp
@@ -1,12 +1,12 @@
#include "std.h"
#include "core/sys.h"
-#include "core/monitor.h"
+#include "ui/vt.h"
int errno = 0;
void abort() {
- monitor_write("\n\n ABORT - errno: ");
- monitor_writeDec(errno);
- monitor_write("\n");
+ ke_vt->writeStr("\n\n ABORT - errno: ");
+ ke_vt->writeDec(errno);
+ ke_vt->writeStr("\n");
PANIC("abort() called, probably a memory manager failure.");
}