mirror of
https://github.com/ocaml-tracing/ocaml-trace.git
synced 2026-03-09 12:23:32 -04:00
fix build
This commit is contained in:
parent
2d3eee8cb4
commit
d5cd24d8ed
1 changed files with 6 additions and 6 deletions
|
|
@ -257,18 +257,18 @@ module Writer = struct
|
||||||
Hints: https://docs.google.com/document/d/15BB-suCb9j-nFt55yCFJBJCGzLg2qUm3WaSOPb8APtI/
|
Hints: https://docs.google.com/document/d/15BB-suCb9j-nFt55yCFJBJCGzLg2qUm3WaSOPb8APtI/
|
||||||
*)
|
*)
|
||||||
let emit_enter_context ~tid ~name ~ts (self : t) : unit =
|
let emit_enter_context ~tid ~name ~ts (self : t) : unit =
|
||||||
emit_sep_ self;
|
emit_sep_and_start_ self;
|
||||||
Printf.fprintf self.oc
|
Printf.bprintf self.buf
|
||||||
{json|{"pid":%d,"tid":%d,"ts":%.2f,"name":%a,"ph":"b"}|json} self.pid tid
|
{json|{"pid":%d,"tid":%d,"ts":%.2f,"name":%a,"ph":"b"}|json} self.pid tid
|
||||||
ts str_val name;
|
ts str_val name;
|
||||||
()
|
Buffer.output_buffer self.oc self.buf
|
||||||
|
|
||||||
let emit_exit_context ~tid ~name ~ts (self : t) : unit =
|
let emit_exit_context ~tid ~name ~ts (self : t) : unit =
|
||||||
emit_sep_ self;
|
emit_sep_and_start_ self;
|
||||||
Printf.fprintf self.oc
|
Printf.bprintf self.buf
|
||||||
{json|{"pid":%d,"tid":%d,"ts":%.2f,"name":%a,"ph":"e"}|json} self.pid tid
|
{json|{"pid":%d,"tid":%d,"ts":%.2f,"name":%a,"ph":"e"}|json} self.pid tid
|
||||||
ts str_val name;
|
ts str_val name;
|
||||||
()
|
Buffer.output_buffer self.oc self.buf
|
||||||
|
|
||||||
let emit_name_thread ~tid ~name (self : t) : unit =
|
let emit_name_thread ~tid ~name (self : t) : unit =
|
||||||
emit_sep_and_start_ self;
|
emit_sep_and_start_ self;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue