Hide spinlock 31.

This commit is contained in:
Jonathan 'theJPster' Pallant 2022-01-30 16:43:59 +00:00
parent efda22c9ea
commit 4a540d041a

View file

@ -471,8 +471,8 @@ pub type Spinlock30 = Spinlock<30>;
impl SpinlockValid for Spinlock<30> {}
/// Spinlock number 31
pub type Spinlock31 = Spinlock<31>;
/// Spinlock number 31 - used by critical section implementation
pub(crate) type Spinlock31 = Spinlock<31>;
impl SpinlockValid for Spinlock<31> {}