/* times.c * * COPYRIGHT (c) 1995 by AT&T Bell Laboratories. */ #include "ml-unixdep.h" #include #include "ml-base.h" #include "ml-values.h" #include "ml-objects.h" #include "ml-c.h" #include "cfun-proto-list.h" /* _ml_P_ProcEnv_times: unit -> int * int * int * int * int * * Return process and child process times, in clock ticks. */ ml_val_t _ml_P_ProcEnv_times (ml_state_t *msp, ml_val_t arg) { clock_t t; struct tms ts; ml_val_t v, e, u, s, cu, cs; t = times (&ts); if (t == -1) return RAISE_SYSERR(msp, -1); INT32_ALLOC(msp, e, t); INT32_ALLOC(msp, u, ts.tms_utime); INT32_ALLOC(msp, s, ts.tms_stime); INT32_ALLOC(msp, cu, ts.tms_cutime); INT32_ALLOC(msp, cs, ts.tms_cstime); REC_ALLOC5(msp, v, e, u, s, cu, cs); return v; } /* end of _ml_P_ProcEnv_times */