mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
2f4e7edee5
It makes no sense that clients had to worry about whether or not KSyms were loaded.
20 lines
320 B
C
20 lines
320 B
C
#pragma once
|
|
|
|
#include <AK/AKString.h>
|
|
#include <AK/Vector.h>
|
|
|
|
struct KSym {
|
|
dword address;
|
|
const char* name;
|
|
};
|
|
|
|
const KSym* ksymbolicate(dword address);
|
|
void load_ksyms();
|
|
void init_ksyms();
|
|
|
|
extern bool ksyms_ready;
|
|
extern dword ksym_lowest_address;
|
|
extern dword ksym_highest_address;
|
|
|
|
void dump_backtrace();
|