diff options
| author | Fuwn <[email protected]> | 2022-01-03 03:20:12 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-01-03 03:20:12 -0800 |
| commit | 85db2b507f3f69b32811c54a89d9ac7bbbc46121 (patch) | |
| tree | 2efd66da452f8a6a2cc6c91584c925f237506ddf /crates/windows-kernel-rs/src/sync/mod.rs | |
| download | driver-85db2b507f3f69b32811c54a89d9ac7bbbc46121.tar.xz driver-85db2b507f3f69b32811c54a89d9ac7bbbc46121.zip | |
feat(driver): commit primer
Diffstat (limited to 'crates/windows-kernel-rs/src/sync/mod.rs')
| -rw-r--r-- | crates/windows-kernel-rs/src/sync/mod.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/windows-kernel-rs/src/sync/mod.rs b/crates/windows-kernel-rs/src/sync/mod.rs new file mode 100644 index 0000000..b024c55 --- /dev/null +++ b/crates/windows-kernel-rs/src/sync/mod.rs @@ -0,0 +1,4 @@ +pub mod fast_mutex; +pub mod push_lock; + +pub use self::{fast_mutex::FastMutex as Mutex, push_lock::PushLock as RwLock}; |