Module Trace_tef.Types

module Trace_id = Trace_util.Trace_id64
type trace_id = Trace_id.t
type Trace_core.span +=
  1. | Span_tef_sync of {
    1. pid : int;
    2. tid : int;
    3. name : string;
    4. start_us : float;
    5. mutable args : (string * Trace_core.user_data) list;
    }
  2. | Span_tef_async of {
    1. pid : int;
    2. tid : int;
    3. name : string;
    4. trace_id : trace_id;
    5. mutable args : (string * Trace_core.user_data) list;
    }