2007-08-07 14:14:04 +02:00
|
|
|
#include "sysutil.h"
|
|
|
|
|
|
|
|
/*===========================================================================*
|
2013-03-29 22:48:22 +01:00
|
|
|
* getuptime *
|
2007-08-07 14:14:04 +02:00
|
|
|
*===========================================================================*/
|
2013-03-29 22:48:22 +01:00
|
|
|
int getticks(ticks)
|
|
|
|
clock_t *ticks; /* monotonic time in ticks */
|
2007-08-07 14:14:04 +02:00
|
|
|
{
|
|
|
|
message m;
|
|
|
|
int s;
|
|
|
|
|
|
|
|
m.m_type = SYS_TIMES; /* request time information */
|
|
|
|
m.T_ENDPT = NONE; /* ignore process times */
|
2010-02-09 16:20:09 +01:00
|
|
|
s = _kernel_call(SYS_TIMES, &m);
|
2007-08-07 14:14:04 +02:00
|
|
|
*ticks = m.T_BOOT_TICKS;
|
|
|
|
return(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|