Skip to content

Commit

Permalink
crates/sel4-sync: Re-export lock_api
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Spinale <[email protected]>
  • Loading branch information
nspin committed Jul 11, 2024
1 parent 38c992e commit 578bdbf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 2 additions & 0 deletions crates/sel4-sync/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

#![no_std]

pub use lock_api;

pub use sel4_sync_trivial::*;

mod mutex;
Expand Down
2 changes: 0 additions & 2 deletions crates/sel4-sync/trivial/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
use core::cell::Cell;
use core::sync::atomic::{AtomicBool, Ordering};

pub use lock_api;

pub struct PanickingRawMutex {
locked: AtomicBool,
}
Expand Down

0 comments on commit 578bdbf

Please sign in to comment.