xref: /haiku/headers/private/system/arch/x86/arch_real_time_data.h (revision c237c4ce593ee823d9867fd997e51e4c447f5623)
1 /*
2  * Copyright 2018 Haiku Inc. All Rights Reserved.
3  * Copyright 2006, Ingo Weinhold <bonefish@cs.tu-berlin.de>.
4  * All rights reserved. Distributed under the terms of the MIT License.
5  */
6 #ifndef _KERNEL_ARCH_REAL_TIME_DATA_H
7 #define _KERNEL_ARCH_REAL_TIME_DATA_H
8 
9 #include <StorageDefs.h>
10 #include <SupportDefs.h>
11 
12 
13 struct arch_real_time_data {
14 	bigtime_t	system_time_offset;
15 	uint32		system_time_conversion_factor;
16 	uint32		_padding;
17 };
18 
19 #endif	/* _KERNEL_ARCH_REAL_TIME_DATA_H */
20