summaryrefslogtreecommitdiff
path: root/Kernel/Syscall.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-10-22 11:53:30 +0200
committerAndreas Kling <awesomekling@gmail.com>2018-10-22 11:53:59 +0200
commite4afa2a04173d90d5e88ef0d1cd575d2a827534d (patch)
tree2989720107c1e57025eb00a05fbbba13ccad1dbc /Kernel/Syscall.h
parent3a3c57357c95629dc89c1045c7dbe3b0c1c6c778 (diff)
downloadserenity-e4afa2a04173d90d5e88ef0d1cd575d2a827534d.zip
Tweak _test.o to use the putch() syscall.
It's still running in kernel space. Once I make it possible for ELFLoader to set up a ring 3 task, we'll really be cooking!
Diffstat (limited to 'Kernel/Syscall.h')
-rw-r--r--Kernel/Syscall.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Syscall.h b/Kernel/Syscall.h
index 3e624a83a7..2188edd7bb 100644
--- a/Kernel/Syscall.h
+++ b/Kernel/Syscall.h
@@ -10,6 +10,7 @@ namespace Syscall {
enum Function {
Sleep = 0x1982,
Yield = 0x1983,
+ PutCharacter = 1984,
PosixOpen = 0x1985,
PosixClose = 0x1986,
PosixRead = 0x1987,