Skip to content

Commit f5e3a6b

Browse files
committed
Make pthread Mutex internals less public
1 parent 33bd15e commit f5e3a6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)