Module Webkit_trace_event

Output a binary or Yojson-compatable representation of WebKit trace events. Spec at https://docs.google.com/document/d/1CvAClvFfyA5R-PhYUmn5OOQtYMH4h6I0nSsKchNAySU/

type event_kind =
| New_thread
| Thread_switch
| Cycle_start
| Cycle_end
| Pid_is
| Event
| Measure_start
| Measure_end
| Trace_end
type event = {
name : string;
categories : string list;
phase : event_kind;
timestamp : int;
pid : int;
tid : int;
}
type events = event list
val create_event : ?categories:string list -> ?pid:int -> ?tid:int -> phase:event_kind -> timestamp:int -> string -> event
module Output : sig ... end