1 /* 2 * Copyright 2018, Haiku, Inc. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 6 #include <OS.h> 7 #include <compat/sys/kernel.h> 8 9 10 int32_t 11 _get_ticks() 12 { 13 return USEC_2_TICKS(system_time()); 14 } 15