1995-08-09 08:06:35 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Objective Caml */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* Automatique. Distributed only by permission. */
|
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
1995-05-08 08:18:32 -07:00
|
|
|
#include <mlvalues.h>
|
|
|
|
#include <alloc.h>
|
|
|
|
#include <memory.h>
|
|
|
|
#include "unix.h"
|
1995-09-04 05:06:20 -07:00
|
|
|
#include <time.h>
|
1995-05-08 08:18:32 -07:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/times.h>
|
|
|
|
|
1995-09-04 05:06:20 -07:00
|
|
|
#ifndef CLK_TCK
|
|
|
|
#ifdef HZ
|
|
|
|
#define CLK_TCK HZ
|
|
|
|
#else
|
|
|
|
#define CLK_TCK 60
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
1995-12-15 02:19:58 -08:00
|
|
|
value unix_times_bytecode() /* ML */
|
1995-05-08 08:18:32 -07:00
|
|
|
{
|
|
|
|
value res;
|
|
|
|
struct tms buffer;
|
|
|
|
int i;
|
|
|
|
Push_roots(t,4);
|
|
|
|
|
|
|
|
times(&buffer);
|
1995-09-04 05:06:20 -07:00
|
|
|
t[0] = copy_double((double) buffer.tms_utime / CLK_TCK);
|
|
|
|
t[1] = copy_double((double) buffer.tms_stime / CLK_TCK);
|
|
|
|
t[2] = copy_double((double) buffer.tms_cutime / CLK_TCK);
|
|
|
|
t[3] = copy_double((double) buffer.tms_cstime / CLK_TCK);
|
1995-05-08 08:18:32 -07:00
|
|
|
res = alloc_tuple(4);
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
Field(res, i) = t[i];
|
|
|
|
Pop_roots();
|
|
|
|
return res;
|
|
|
|
}
|
1995-12-15 02:19:58 -08:00
|
|
|
|
|
|
|
value unix_times_native() /* ML */
|
|
|
|
{
|
|
|
|
value res;
|
|
|
|
struct tms buffer;
|
|
|
|
|
|
|
|
times(&buffer);
|
|
|
|
res = alloc(4 * Double_wosize, Double_array_tag);
|
|
|
|
Store_double_field(res, 0, (double) buffer.tms_utime / CLK_TCK);
|
|
|
|
Store_double_field(res, 1, (double) buffer.tms_stime / CLK_TCK);
|
|
|
|
Store_double_field(res, 2, (double) buffer.tms_cutime / CLK_TCK);
|
|
|
|
Store_double_field(res, 3, (double) buffer.tms_cstime / CLK_TCK);
|
|
|
|
return res;
|
|
|
|
}
|