From e83717b454722b8c61844686377c2ac58f18454f Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Tue, 23 Aug 2022 20:56:57 -0700 Subject: 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 --- src/sync.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/sync.rs') 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 interface::Mutex for NullLock { f(data) } } +*/ -- cgit v1.2.1