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));
|
|
|
|
m.PM_TIME_CLK_ID = (clockid_t) 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;
|
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
res->tv_sec = (time_t) m.PM_TIME_SEC;
|
|
|
|
res->tv_nsec = (long) m.PM_TIME_USEC;
|
2013-03-29 22:48:22 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|