This repository has been archived on 2023-12-27. You can view files and clone it, but cannot push or open issues or pull requests.
chuniio-tasoller/vendor/shared_memory
beerpsi eeb5727f55 minimize build size (800kb -> 200kb) 2023-12-22 23:07:55 +07:00
..
.github minimize build size (800kb -> 200kb) 2023-12-22 23:07:55 +07:00
examples minimize build size (800kb -> 200kb) 2023-12-22 23:07:55 +07:00
src minimize build size (800kb -> 200kb) 2023-12-22 23:07:55 +07:00
tests minimize build size (800kb -> 200kb) 2023-12-22 23:07:55 +07:00
.gitignore minimize build size (800kb -> 200kb) 2023-12-22 23:07:55 +07:00
Cargo.toml minimize build size (800kb -> 200kb) 2023-12-22 23:07:55 +07:00
README.md minimize build size (800kb -> 200kb) 2023-12-22 23:07:55 +07:00
changelog.md minimize build size (800kb -> 200kb) 2023-12-22 23:07:55 +07:00

README.md

shared_memory

Build Status crates.io mio Lines of Code

A crate that allows you to share memory between processes.

This crate provides lightweight wrappers around shared memory APIs in an OS agnostic way. It is intended to be used with it's sister crate raw_sync which provide simple primitves to synchronize access to the shared memory (Mutex, RwLock, Events, etc...).

raw_sync
crates.io docs.rs

Usage

For usage examples, see code located in examples/ :

Examples Description
event Shows the use of shared events through shared memory
mutex Shows the use of a shared mutex through shared memory

License

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.