2013-03-29 22:48:22 +01:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <lib.h>
|
|
|
|
#include "namespace.h"
|
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
#include <string.h>
|
2013-03-29 22:48:22 +01:00
|
|
|
#include <sys/time.h>
|
|
|
|
|
|
|
|
#ifdef __weak_alias
|
|
|
|
__weak_alias(clock_gettime, __clock_gettime50);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int clock_gettime(clockid_t clock_id, struct timespec *res)
|
|
|
|
{
|
|
|
|
message m;
|
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
memset(&m, 0, sizeof(m));
|
2014-05-12 23:40:11 +02:00
|
|
|
m.m_lc_pm_time.clk_id = clock_id;
|
2013-03-29 22:48:22 +01:00
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
if (_syscall(PM_PROC_NR, PM_CLOCK_GETTIME, &m) < 0)
|
2013-03-29 22:48:22 +01:00
|
|
|
return -1;
|
|
|
|
|
2014-05-12 23:40:11 +02:00
|
|
|
res->tv_sec = m.m_pm_lc_time.sec;
|
|
|
|
res->tv_nsec = m.m_pm_lc_time.nsec;
|
2013-03-29 22:48:22 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|