mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:48:11 +00:00
22 lines
341 B
C
22 lines
341 B
C
#pragma once
|
|
|
|
#include "types.h"
|
|
#include <AK/Vector.h>
|
|
#include <AK/AKString.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;
|