2 #define getitimer _getitimer
6 * This is the implementation for the function to
7 * invoke the interval timer retrieval system call.
9 int getitimer(int which
, struct itimerval
*value
)
14 m
.m1_p1
= NULL
; /* only retrieve the timer */
15 m
.m1_p2
= (char *) value
;
17 return _syscall(PM_PROC_NR
, ITIMER
, &m
);