mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 11:42:38 +03:00
27f699ef0c
These types can be picked up by including <AK/Types.h>: * u8, u16, u32, u64 (unsigned) * i8, i16, i32, i64 (signed)
20 lines
312 B
C
20 lines
312 B
C
#pragma once
|
|
|
|
#include <AK/AKString.h>
|
|
#include <AK/Vector.h>
|
|
|
|
struct KSym {
|
|
u32 address;
|
|
const char* name;
|
|
};
|
|
|
|
const KSym* ksymbolicate(u32 address);
|
|
void load_ksyms();
|
|
void init_ksyms();
|
|
|
|
extern bool ksyms_ready;
|
|
extern u32 ksym_lowest_address;
|
|
extern u32 ksym_highest_address;
|
|
|
|
void dump_backtrace();
|