mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 10:12:25 -05:00
e6284a8774
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, ...);
|
|
|