package dolmen

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file timer.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

(* This file is free software, part of dolmen. See file "LICENSE" for more information *)

(* Simple timer *)
(* ************************************************************************* *)

type t = {
  mutable start : float; (* start of the timer *)
}

let start () =
  (* allocate the recors before calling gettimeofday to
     avoid counting the time of the record allocation in the
     timer. *)
  let t = { start = 0.; } in
  t.start <- Unix.gettimeofday ();
  t

let stop t =
  let stop = Unix.gettimeofday () in
  stop -. t.start



OCaml

Innovation. Community. Security.