Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: mbed_blinky-bmd-200 bmd-200_accel_demo firstRig
Fork of mbed-src by
Diff: api/CircularBuffer.h
- Revision:
- 565:f26bb522183d
- Parent:
- 529:c320967f86b9
--- a/api/CircularBuffer.h Mon Jun 08 13:45:08 2015 +0100
+++ b/api/CircularBuffer.h Mon Jun 08 16:15:09 2015 +0100
@@ -88,9 +88,9 @@
private:
T _pool[BufferSize];
- CounterType _head;
- CounterType _tail;
- bool _full;
+ volatile CounterType _head;
+ volatile CounterType _tail;
+ volatile bool _full;
};
}
