diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-10-29 21:54:11 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-10-29 22:04:26 +0100 |
commit | e6284a8774b387ec23cda03b2af0ba3dcc09286f (patch) | |
tree | b92a7dcae807f4b5c086f6f23f06748bf6181956 /Kernel/kprintf.h | |
parent | bea106fdb2fa29be294e088189aafcd19eb83be3 (diff) | |
download | serenity-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.h | 1 |
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, ...); |