mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-09 00:22:36 +02: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.
9 lines
160 B
C
9 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, ...);
|
|
|