├── .github ├── dependabot.yml └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.toml ├── README.md ├── changelog.md ├── examples ├── basic.rs ├── event.rs └── mutex.rs ├── src ├── error.rs ├── lib.rs ├── unix.rs └── windows.rs └── tests ├── general.rs └── posix_semantics.rs /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/shared_memory/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/shared_memory/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | .vscode/ 5 | /.idea 6 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/shared_memory/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/shared_memory/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/shared_memory/HEAD/changelog.md -------------------------------------------------------------------------------- /examples/basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/shared_memory/HEAD/examples/basic.rs -------------------------------------------------------------------------------- /examples/event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/shared_memory/HEAD/examples/event.rs -------------------------------------------------------------------------------- /examples/mutex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/shared_memory/HEAD/examples/mutex.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/shared_memory/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/shared_memory/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/unix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/shared_memory/HEAD/src/unix.rs -------------------------------------------------------------------------------- /src/windows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/shared_memory/HEAD/src/windows.rs -------------------------------------------------------------------------------- /tests/general.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/shared_memory/HEAD/tests/general.rs -------------------------------------------------------------------------------- /tests/posix_semantics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/shared_memory/HEAD/tests/posix_semantics.rs --------------------------------------------------------------------------------