diff options
| author | Christian Cunningham <c@localhost> | 2022-08-23 20:56:57 -0700 |
|---|---|---|
| committer | Christian Cunningham <c@localhost> | 2022-08-23 20:56:57 -0700 |
| commit | e83717b454722b8c61844686377c2ac58f18454f (patch) | |
| tree | 3f243026dd102ccc9117481e795e6d8e938fc39b /src/sync.rs | |
| parent | 526abb3e5b3175008cb60f78b645d5e2c0f5072a (diff) | |
Migrate the processor-independent code
Due to the similarity with my ARM-based OS ghOSt, I am migrating similar code out to a common crate
Not all has been moved out yet
Diffstat (limited to 'src/sync.rs')
| -rw-r--r-- | src/sync.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/sync.rs b/src/sync.rs index 5afa620..cb245da 100644 --- a/src/sync.rs +++ b/src/sync.rs @@ -1,3 +1,5 @@ +pub use os_pic::sync::*; +/* //! # Synchronization module //! //! Provides synchronization objects for thread-safe memory sharing. @@ -63,3 +65,4 @@ impl<T> interface::Mutex for NullLock<T> { f(data) } } +*/ |
