1 /* 2 * Copyright 2006, Ingo Weinhold <bonefish@cs.tu-berlin.de>. 3 * Distributed under the terms of the MIT License. 4 */ 5 6 #include <OS.h> 7 8 #include <arch_cpu.h> 9 #include <libroot_private.h> 10 #include <real_time_data.h> 11 12 13 static struct arch_real_time_data *sRealTimeData; 14 15 void 16 __arch_init_time(struct real_time_data *data, bool setDefaults) 17 { 18 sRealTimeData = &data->arch_data; 19 20 if (setDefaults) { 21 sRealTimeData->system_time_conversion_factor = 1000000000LL; 22 } 23 24 // __sparc_setup_system_time(&sRealTimeData->system_time_conversion_factor); 25 } 26 27 28 bigtime_t 29 __arch_get_system_time_offset(struct real_time_data *data) 30 { 31 return 0; 32 } 33