2021-07-22 09:17:39 +02:00
|
|
|
//! examples/lock-free.rs
|
|
|
|
|
|
|
|
#![deny(unsafe_code)]
|
|
|
|
#![deny(warnings)]
|
2023-01-21 23:10:43 +01:00
|
|
|
#![deny(missing_docs)]
|
2021-07-22 09:17:39 +02:00
|
|
|
#![no_main]
|
|
|
|
#![no_std]
|
|
|
|
|
|
|
|
use panic_semihosting as _;
|
|
|
|
|
2021-09-22 13:22:45 +02:00
|
|
|
#[rtic::app(device = lm3s6965, dispatchers = [GPIOA])]
|
2021-07-22 09:17:39 +02:00
|
|
|
mod app {
|
|
|
|
use cortex_m_semihosting::{debug, hprintln};
|
|
|
|
|
|
|
|
#[shared]
|
|
|
|
struct Shared {
|
|
|
|
#[lock_free] // <- lock-free shared resource
|
|
|
|
counter: u64,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[local]
|
|
|
|
struct Local {}
|
|
|
|
|
|
|
|
#[init]
|
|
|
|
fn init(_: init::Context) -> (Shared, Local, init::Monotonics) {
|
2021-09-22 13:22:45 +02:00
|
|
|
foo::spawn().unwrap();
|
2021-07-22 09:17:39 +02:00
|
|
|
|
|
|
|
(Shared { counter: 0 }, Local {}, init::Monotonics())
|
|
|
|
}
|
|
|
|
|
2021-09-22 13:22:45 +02:00
|
|
|
#[task(shared = [counter])] // <- same priority
|
|
|
|
fn foo(c: foo::Context) {
|
|
|
|
bar::spawn().unwrap();
|
2021-07-22 09:17:39 +02:00
|
|
|
|
|
|
|
*c.shared.counter += 1; // <- no lock API required
|
|
|
|
let counter = *c.shared.counter;
|
2023-01-11 21:33:44 +01:00
|
|
|
hprintln!(" foo = {}", counter);
|
2021-07-22 09:17:39 +02:00
|
|
|
}
|
|
|
|
|
2021-09-22 13:22:45 +02:00
|
|
|
#[task(shared = [counter])] // <- same priority
|
|
|
|
fn bar(c: bar::Context) {
|
|
|
|
foo::spawn().unwrap();
|
2021-07-22 09:17:39 +02:00
|
|
|
|
|
|
|
*c.shared.counter += 1; // <- no lock API required
|
|
|
|
let counter = *c.shared.counter;
|
2023-01-11 21:33:44 +01:00
|
|
|
hprintln!(" bar = {}", counter);
|
2021-07-22 09:17:39 +02:00
|
|
|
|
2021-09-22 13:22:45 +02:00
|
|
|
debug::exit(debug::EXIT_SUCCESS); // Exit QEMU simulator
|
2021-07-22 09:17:39 +02:00
|
|
|
}
|
|
|
|
}
|