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_getres, __clock_getres50);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int clock_getres(clockid_t clock_id, struct timespec *res)
|
|
|
|
{
|
|
|
|
message m;
|
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
memset(&m, 0, sizeof(m));
|
2013-11-27 12:01:26 +01:00
|
|
|
m.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_GETRES, &m) < 0)
|
2013-03-29 22:48:22 +01:00
|
|
|
return -1;
|
|
|
|
|
2013-09-20 19:47:18 +02:00
|
|
|
res->tv_sec = m.PM_TIME_SEC;
|
|
|
|
res->tv_nsec = m.PM_TIME_NSEC;
|
2013-03-29 22:48:22 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|