Expand description
Render-lane locking helpers.
These helpers were promoted into [khora_core::lane::lock] so both
khora-lanes and khora-infra (which depend only on khora-core)
can use them. This file is kept as a thin re-export to preserve the
existing crate::render_lane::util::lock::* import paths.
Functionsยง
- mutex_
lock - Locks a
Mutex<T>, mapping poisoning to [LaneError::LockPoisoned]. - mutex_
lock_ render - Locks a
Mutex<T>, mapping poisoning to a [RenderError]. - read_
lock - Acquires a read lock, mapping poisoning to [
LaneError::LockPoisoned]. - read_
lock_ render - Like
mutex_lock_renderbut forRwLock<T>read access. - write_
lock - Acquires a write lock, mapping poisoning to [
LaneError::LockPoisoned]. - write_
lock_ render - Like
mutex_lock_renderbut forRwLock<T>write access.