Skip to main content

reifydb_runtime/sync/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2026 ReifyDB
3
4//! Synchronisation primitives that are mockable under deterministic simulation. Code that builds on `std::sync`
5//! directly cannot be replayed; code that builds on this module can.
6
7pub mod condvar;
8pub mod map;
9pub mod mutex;
10pub mod rwlock;
11pub mod waiter;