minix/lib/libsys/getticks.c

23 lines
533 B
C
Raw Normal View History

2007-08-07 14:14:04 +02:00
#include "sysutil.h"
/*===========================================================================*
* getuptime *
2007-08-07 14:14:04 +02: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 */
s = _kernel_call(SYS_TIMES, &m);
2007-08-07 14:14:04 +02:00
*ticks = m.T_BOOT_TICKS;
return(s);
}