Module StarvationDomain.Event
type t
=
|
Ipc of
{
callee : IR.Procname.t;
thread : ThreadDomain.t;
}
|
LockAcquire of
{
locks : Lock.t list;
thread : ThreadDomain.t;
}
|
MayBlock of
{
callee : IR.Procname.t;
thread : ThreadDomain.t;
}
|
MonitorWait of
{
lock : Lock.t;
thread : ThreadDomain.t;
}
|
MustNotOccurUnderLock of
{
callee : IR.Procname.t;
thread : ThreadDomain.t;
}
|
StrictModeCall of
{
callee : IR.Procname.t;
thread : ThreadDomain.t;
}