1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 04:28:13 +00:00
serenity/Kernel/system.h
Andreas Kling 503e32552c Move kernel symbolication code out of init.cpp and into its own KSym files.
Also use a simple array of { dword, const char* } for the KSyms and put the
whole shebang in kmalloc_eternal() memory. This was a fugly source of
kmalloc perma-frag.
2018-12-24 23:01:09 +01:00

14 lines
187 B
C

#pragma once
#include "types.h"
#include <AK/Vector.h>
#include <AK/AKString.h>
struct system_t
{
time_t uptime;
dword nprocess;
dword nblocked;
};
extern system_t system;