trait EvalContextExtPriv<'mir, 'tcx: 'mir>: MiriInterpCxExt<'mir, 'tcx> {
    fn reacquire_cond_lock(
        &mut self,
        thread: ThreadId,
        lock: RwLockId,
        mode: RwLockMode
    ) -> InterpResult<'tcx> { ... } }

Provided Methods§

Try to reacquire the lock associated with the condition variable after we were signaled.

Implementors§