Skip to content

Commit 149b5b2

Browse files
committed
Make pthread Mutex internals less public
1 parent 2e99a88 commit 149b5b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/src/sys/sync/mutex/pthread.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use crate::sys::pal::sync as pal;
66
use crate::sys::sync::OnceBox;
77

88
pub struct Mutex {
9-
pub pal: OnceBox<pal::Mutex>,
9+
pub(in crate::sys::sync) pal: OnceBox<pal::Mutex>,
1010
}
1111

1212
impl Mutex {

0 commit comments

Comments
 (0)