Modified for BG96
Fork of mbed-dev by
Diff: platform/PlatformMutex.h
- Revision:
- 187:0387e8f68319
- Parent:
- 178:79309dc6340a
--- a/platform/PlatformMutex.h Fri Jun 22 16:45:37 2018 +0100 +++ b/platform/PlatformMutex.h Thu Sep 06 13:40:20 2018 +0100 @@ -33,19 +33,23 @@ */ class PlatformMutex : private mbed::NonCopyable<PlatformMutex> { public: - PlatformMutex() { + PlatformMutex() + { // Stub } - ~PlatformMutex() { + ~PlatformMutex() + { // Stub } - void lock() { + void lock() + { // Do nothing } - void unlock() { + void unlock() + { // Do nothing } };