blob: d5b583d5757797dea0e440056f4a8624370585fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include <AK/Types.h>
#ifdef KERNEL
# include <Kernel/UnixTypes.h>
#else
# include <sys/time.h>
#endif
struct KernelInfoPage {
volatile u32 serial;
volatile struct timeval now;
};
|