mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 00:34:58 +00:00
12 lines
139 B
C
12 lines
139 B
C
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
struct system_t
|
|
{
|
|
time_t uptime;
|
|
dword nprocess;
|
|
dword nblocked;
|
|
};
|
|
|
|
extern system_t system;
|