8 * This is the implementation for the function to
9 * invoke the interval timer retrieval system call.
11 int getitimer(int which
, struct itimerval
*value
)
16 m
.m1_p1
= NULL
; /* only retrieve the timer */
17 m
.m1_p2
= (char *) value
;
19 return _syscall(PM_PROC_NR
, ITIMER
, &m
);