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 = {
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