#critical-section #synchronization #spin-lock #arceos #no-irq

no-std kspin

Spinlocks used for kernel space that can disable preemption or IRQs in the critical section

1 unstable release

0.1.0 Jul 17, 2024

#323 in Operating systems

Download history 412/week @ 2024-07-17 461/week @ 2024-07-24 467/week @ 2024-07-31 162/week @ 2024-08-07 173/week @ 2024-08-14 240/week @ 2024-08-21 211/week @ 2024-08-28

813 downloads per month

GPL-3.0-or-later OR Apache-2…

17KB
302 lines

kspin

Crates.io Docs.rs CI

Spinlocks used for kernel space that can disable preemption or IRQs in the critical section.

Cargo Features

  • smp: Use in the multi-core environment. For single-core environment (without this feature), the lock state is unnecessary and optimized out. CPU can always get the lock if we follow the proper guard in use. By default, this feature is disabled.

Examples

use kspin::{SpinNoIrq, SpinNoPreempt, SpinRaw};

let data = SpinRaw::new(());
let mut guard = data.lock();
/* critical section, does nothing while trying to lock. */
drop(guard);

let data = SpinNoPreempt::new(());
let mut guard = data.lock();
/* critical section, preemption are disabled. */
drop(guard);

let data = SpinNoIrq::new(());
let mut guard = data.lock();
/* critical section, both preemption and IRQs are disabled. */
drop(guard);

Dependencies

~295–750KB
~18K SLoC