1999-11-16 07:25:48 -08:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Objective Caml */
|
|
|
|
/* */
|
|
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
|
|
/* */
|
|
|
|
/* 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 */
|
|
|
|
/* under the terms of the GNU Library General Public License. */
|
1999-11-16 07:25:48 -08:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
1995-10-30 04:25:51 -08:00
|
|
|
#include <mlvalues.h>
|
|
|
|
#include <alloc.h>
|
1996-09-04 07:15:31 -07:00
|
|
|
#include "unixsupport.h"
|
1995-10-30 04:25:51 -08:00
|
|
|
|
|
|
|
#ifdef HAS_GETTIMEOFDAY
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
2001-08-28 07:47:48 -07:00
|
|
|
CAMLprim value unix_gettimeofday(value unit)
|
1995-10-30 04:25:51 -08:00
|
|
|
{
|
|
|
|
struct timeval tp;
|
|
|
|
if (gettimeofday(&tp, NULL) == -1) uerror("gettimeofday", Nothing);
|
|
|
|
return copy_double((double) tp.tv_sec + (double) tp.tv_usec / 1e6);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2001-08-28 07:47:48 -07:00
|
|
|
CAMLprim value unix_gettimeofday(value unit)
|
1997-09-02 05:55:01 -07:00
|
|
|
{ invalid_argument("gettimeofday not implemented"); }
|
1995-10-30 04:25:51 -08:00
|
|
|
|
|
|
|
#endif
|