mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
23 lines
339 B
C
23 lines
339 B
C
#pragma once
|
|
|
|
#include "types.h"
|
|
#include <AK/Vector.h>
|
|
#include <AK/String.h>
|
|
|
|
struct KSym {
|
|
dword address;
|
|
String name;
|
|
};
|
|
|
|
Vector<KSym, KmallocEternalAllocator>& ksyms() PURE;
|
|
const KSym* ksymbolicate(dword address) PURE;
|
|
|
|
struct system_t
|
|
{
|
|
time_t uptime;
|
|
DWORD nprocess;
|
|
DWORD nblocked;
|
|
};
|
|
|
|
extern system_t system;
|