Added the real_time_data structure that extends Jerome's work on the

real time shared page (it contains the boot time offset and the system
time conversion factor for now).


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9850 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-11-08 11:35:00 +00:00
parent d790daa3cc
commit 9e78877956

View File

@ -0,0 +1,17 @@
/*
** Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Distributed under the terms of the Haiku License.
*/
#ifndef _KERNEL_REAL_TIME_DATA_H
#define _KERNEL_REAL_TIME_DATA_H
#include <SupportDefs.h>
struct real_time_data {
uint64 boot_time;
uint32 system_time_conversion_factor;
};
#endif /* _KRENEL_REAL_TIME_DATA_H */