1 /* 2 * Copyright 2019 Haiku, Inc. All Rights Reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _KERNEL_ARCH_REAL_TIME_DATA_H 6 #define _KERNEL_ARCH_REAL_TIME_DATA_H 7 8 #include <StorageDefs.h> 9 #include <SupportDefs.h> 10 11 struct arm64_real_time_data { 12 vint64 system_time_offset; 13 }; 14 15 struct arch_real_time_data { 16 struct arm64_real_time_data data[2]; 17 vint32 system_time_conversion_factor; 18 vint32 version; 19 }; 20 21 #endif /* _KERNEL_ARCH_REAL_TIME_DATA_H */ 22