mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 02:12:09 -05:00
9396108034
It's a lot crappier than I remembered it. It's gonna need a lot of work.
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;
|