Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: LGPL-2.1+ */
0002 /* Copyright (C) 2022, Linaro Ltd - Daniel Lezcano <daniel.lezcano@linaro.org> */
0003 #ifndef __THERMAL_TOOLS_UPTIMEOFDAY_H
0004 #define __THERMAL_TOOLS_UPTIMEOFDAY_H
0005 #include <sys/sysinfo.h>
0006 #include <sys/time.h>
0007 
0008 int uptimeofday_init(void);
0009 unsigned long getuptimeofday_ms(void);
0010 struct timespec msec_to_timespec(int msec);
0011 
0012 #endif