mirror of
https://github.com/ocaml-tracing/ocaml-trace.git
synced 2026-03-07 18:37:56 -05:00
3 lines
100 B
OCaml
3 lines
100 B
OCaml
let[@inline] get_time_ns () : int64 =
|
|
let t = Unix.gettimeofday () in
|
|
Int64.of_float (t *. 1e9)
|