diff options
| author | Jorge Aparicio <jorge@japaric.io> | 2017-12-09 13:38:41 +0100 |
|---|---|---|
| committer | Jorge Aparicio <jorge@japaric.io> | 2017-12-09 17:15:15 +0100 |
| commit | 219e17268018f397ff3c8a41519c8345aeab7f2f (patch) | |
| tree | 5022a7640b4eae2174fe37f8f9943335f2fb7a0a /examples/preemption.rs | |
| parent | 0f5784c2401d4b12004f34345e721598fa21219a (diff) | |
drop the Static wrapper
Diffstat (limited to 'examples/preemption.rs')
| -rw-r--r-- | examples/preemption.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/preemption.rs b/examples/preemption.rs index 98dde8d..07e9362 100644 --- a/examples/preemption.rs +++ b/examples/preemption.rs @@ -47,7 +47,7 @@ fn sys_tick(_t: &mut Threshold, r: SYS_TICK::Resources) { // This task can't be preempted by `tim2` so it has direct access to the // resource data - **r.COUNTER += 1; + *r.COUNTER += 1; // .. } @@ -61,7 +61,7 @@ fn tim2(t: &mut Threshold, mut r: TIM2::Resources) { // lead to undefined behavior. r.COUNTER.claim_mut(t, |counter, _t| { // `claim_mut` creates a critical section - **counter += 1; + *counter += 1; }); // .. |
