hyperactor/
sync.rs

1/*
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 * All rights reserved.
4 *
5 * This source code is licensed under the BSD-style license found in the
6 * LICENSE file in the root directory of this source tree.
7 */
8
9//! Synchronization primitives that are used by Hyperactor.
10//!
11//! These are used in related Hyperactor crates as well, and are thus part of the
12//! public API. However, they should not be considered a stable part of the Hyperactor
13//! API itself, and they may be moved to a different crate in the future.
14
15pub mod flag;
16pub mod monitor;