Module StarvationDomain.ScheduledWorkItem

A record of scheduled parallel work: the method scheduled to run, where, and on what thread.

type t = {
  1. procname : IR.Procname.t;
  2. loc : IBase.Location.t;
  3. thread : ThreadDomain.t;
}
include IStdlib.PrettyPrintable.PrintableOrderedType with type t := t
include IStdlib.IStd.Caml.Set.OrderedType with type t := t
val compare : t -> t -> int
include IStdlib.PrettyPrintable.PrintableType with type t := t
val pp : IStdlib.PrettyPrintable.F.formatter -> t -> unit