2011-02-17 18:11:09 +01:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include "namespace.h"
|
|
|
|
#include <lib.h>
|
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
#include <string.h>
|
2011-02-17 18:11:09 +01:00
|
|
|
#include <sys/time.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is the implementation for the function to
|
|
|
|
* invoke the interval timer retrieval system call.
|
|
|
|
*/
|
|
|
|
int getitimer(int which, struct itimerval *value)
|
|
|
|
{
|
|
|
|
message m;
|
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
memset(&m, 0, sizeof(m));
|
2014-05-13 08:43:49 +02:00
|
|
|
m.m_lc_pm_itimer.which = which;
|
|
|
|
m.m_lc_pm_itimer.value = 0; /* only retrieve the timer */
|
|
|
|
m.m_lc_pm_itimer.ovalue = (vir_bytes)value;
|
2011-02-17 18:11:09 +01:00
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
return _syscall(PM_PROC_NR, PM_ITIMER, &m);
|
2011-02-17 18:11:09 +01:00
|
|
|
}
|
2013-01-07 20:10:08 +01:00
|
|
|
|
2013-01-18 00:06:11 +01:00
|
|
|
#if defined(__minix) && defined(__weak_alias)
|
2013-01-07 20:10:08 +01:00
|
|
|
__weak_alias(getitimer, __getitimer50)
|
|
|
|
#endif
|