2005-07-19 15:21:51 +02:00
|
|
|
#include "sysutil.h"
|
2005-05-31 16:44:49 +02:00
|
|
|
|
|
|
|
/*===========================================================================*
|
|
|
|
* getuptime *
|
|
|
|
*===========================================================================*/
|
|
|
|
PUBLIC int getuptime(ticks)
|
|
|
|
clock_t *ticks; /* uptime in ticks */
|
|
|
|
{
|
|
|
|
message m;
|
|
|
|
int s;
|
|
|
|
|
|
|
|
m.m_type = SYS_TIMES; /* request time information */
|
|
|
|
m.T_PROC_NR = NONE; /* ignore process times */
|
|
|
|
s = _taskcall(SYSTASK, SYS_TIMES, &m);
|
|
|
|
*ticks = m.T_BOOT_TICKS;
|
|
|
|
return(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|