Skip to content

Commit

Permalink
Merge pull request #825 from stlankes/net
Browse files Browse the repository at this point in the history
a recursive mutex isn't part of the hermit-abi
  • Loading branch information
mkroening authored Aug 9, 2023
2 parents 1dc6c02 + def4668 commit e1a0707
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/synch/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
//! Synchronization primitives

pub mod futex;
#[cfg(feature = "newlib")]
pub mod recmutex;
pub mod semaphore;
2 changes: 2 additions & 0 deletions src/syscalls/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ pub use self::condvar::*;
pub use self::entropy::*;
pub use self::futex::*;
pub use self::processor::*;
#[cfg(feature = "newlib")]
pub use self::recmutex::*;
pub use self::semaphore::*;
pub use self::spinlock::*;
Expand All @@ -30,6 +31,7 @@ mod lwip;
#[cfg(all(feature = "tcp", not(feature = "newlib")))]
pub mod net;
mod processor;
#[cfg(feature = "newlib")]
mod recmutex;
mod semaphore;
mod spinlock;
Expand Down

0 comments on commit e1a0707

Please sign in to comment.