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 */
|
1999-11-17 10:59:06 -08:00
|
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
2001-12-07 05:41:02 -08:00
|
|
|
/* under the terms of the GNU Library General Public License, with */
|
|
|
|
/* the special exception on linking described in file ../../LICENSE. */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
1995-05-08 08:18:32 -07:00
|
|
|
#include <mlvalues.h>
|
|
|
|
#include <alloc.h>
|
|
|
|
#include <memory.h>
|
1996-09-04 07:15:31 -07:00
|
|
|
#include "unixsupport.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
|
|
|
|
|
2005-03-24 09:20:54 -08:00
|
|
|
CAMLprim value unix_times(value unit)
|
1995-12-15 02:19:58 -08:00
|
|
|
{
|
|
|
|
value res;
|
|
|
|
struct tms buffer;
|
|
|
|
|
|
|
|
times(&buffer);
|
1998-10-26 11:19:32 -08:00
|
|
|
res = alloc_small(4 * Double_wosize, Double_array_tag);
|
1995-12-15 02:19:58 -08:00
|
|
|
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;
|
|
|
|
}
|