mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 07:37:44 +00:00

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.
8 lines
160 B
C
8 lines
160 B
C
#pragma once
|
|
|
|
#include <AK/Compiler.h>
|
|
|
|
int dbgprintf(const char *fmt, ...);
|
|
int kprintf(const char *fmt, ...);
|
|
int ksprintf(char* buf, const char *fmt, ...);
|
|
|