summaryrefslogtreecommitdiff
path: root/Kernel/kprintf.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-10-29 21:54:11 +0100
committerAndreas Kling <awesomekling@gmail.com>2018-10-29 22:04:26 +0100
commite6284a8774b387ec23cda03b2af0ba3dcc09286f (patch)
treeb92a7dcae807f4b5c086f6f23f06748bf6181956 /Kernel/kprintf.h
parentbea106fdb2fa29be294e088189aafcd19eb83be3 (diff)
downloadserenity-e6284a8774b387ec23cda03b2af0ba3dcc09286f.zip
Fix broken SpinLock.
The SpinLock was all backwards and didn't actually work. Fixing it exposed how wrong most of the locking here is. I need to come up with a better granularity here.
Diffstat (limited to 'Kernel/kprintf.h')
-rw-r--r--Kernel/kprintf.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/kprintf.h b/Kernel/kprintf.h
index d35d9d492a..bb7eeb0144 100644
--- a/Kernel/kprintf.h
+++ b/Kernel/kprintf.h
@@ -2,6 +2,7 @@
#include <AK/Compiler.h>
+int dbgprintf(const char *fmt, ...);
int kprintf(const char *fmt, ...);
int ksprintf(char* buf, const char *fmt, ...);