1ae60bd2e8
- Message type for PM_CLOCK_SETTIME, PM_CLOCK_GETTIME, PM_CLOCK_GETRES, PM_GETTIMEOFDAY, PM_SETTIME. - Small adaptation, message only transfert sub-second time in nanoseconds, instead of both nano- and micro-seconds. Conversion is done in userland, as required. Change-Id: Ie4a6e0c457cc12626e85d2102c086a95311cf3e7
26 lines
407 B
C
26 lines
407 B
C
/*
|
|
gettimeofday.c
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
#include "namespace.h"
|
|
#include <lib.h>
|
|
|
|
#include <string.h>
|
|
#include <sys/time.h>
|
|
|
|
int gettimeofday(struct timeval *__restrict tp, void *__restrict tzp)
|
|
{
|
|
message m;
|
|
|
|
memset(&m, 0, sizeof(m));
|
|
|
|
if (_syscall(PM_PROC_NR, PM_GETTIMEOFDAY, &m) < 0)
|
|
return -1;
|
|
|
|
tp->tv_sec = m.m_pm_lc_time.sec;
|
|
tp->tv_usec = m.m_pm_lc_time.nsec / 1000;
|
|
|
|
return 0;
|
|
}
|
|
|