1 /* 2 * Copyright 2018 Haiku Inc. All Rights Reserved. 3 * Copyright 2006, Ingo Weinhold <bonefish@cs.tu-berlin.de>. 4 * Copyright 2019, Adrien Destugues <pulkomandy@pulkomandy.tk>. 5 * All rights reserved. Distributed under the terms of the MIT License. 6 */ 7 #ifndef _KERNEL_ARCH_REAL_TIME_DATA_H 8 #define _KERNEL_ARCH_REAL_TIME_DATA_H 9 10 #include <StorageDefs.h> 11 #include <SupportDefs.h> 12 13 14 struct arch_real_time_data { 15 bigtime_t system_time_offset; 16 uint32 system_time_conversion_factor; 17 uint32 _padding; 18 }; 19 20 #endif /* _KERNEL_ARCH_REAL_TIME_DATA_H */ 21 22