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
27 lines
563 B
C
27 lines
563 B
C
#include <sys/cdefs.h>
|
|
#include <lib.h>
|
|
#include "namespace.h"
|
|
|
|
#include <string.h>
|
|
#include <time.h>
|
|
|
|
#ifdef __weak_alias
|
|
__weak_alias(clock_settime, __clock_settime50);
|
|
#endif
|
|
|
|
int clock_settime(clockid_t clock_id, const struct timespec *ts)
|
|
{
|
|
message m;
|
|
|
|
memset(&m, 0, sizeof(m));
|
|
m.m_lc_pm_time.clk_id = clock_id;
|
|
m.m_lc_pm_time.now = 1; /* set time immediately. don't use adjtime() method. */
|
|
m.m_lc_pm_time.sec = ts->tv_sec;
|
|
m.m_lc_pm_time.nsec = ts->tv_nsec;
|
|
|
|
if (_syscall(PM_PROC_NR, PM_CLOCK_SETTIME, &m) < 0)
|
|
return -1;
|
|
|
|
return 0;
|
|
}
|
|
|