Module StarvationDomain.ScheduledWorkItem
A record of scheduled parallel work: the method scheduled to run, where, and on what thread.
type t
=
{
procname : IR.Procname.t;
loc : IBase.Location.t;
thread : ThreadDomain.t;
}
include IStdlib.PrettyPrintable.PrintableOrderedType with type PrintableOrderedType.t := t
include IStdlib.PrettyPrintable.PrintableType with type t := t
val pp : IStdlib.PrettyPrintable.F.formatter -> t -> unit