Modified for BG96
Fork of mbed-dev by
platform/PlatformMutex.h@188:60408c49b6d4, 2018-09-20 (annotated)
- Committer:
- WaleedElmughrabi
- Date:
- Thu Sep 20 16:11:23 2018 +0000
- Revision:
- 188:60408c49b6d4
- Parent:
- 187:0387e8f68319
Fork modified for BG96 error
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
<> | 149:156823d33999 | 1 | |
<> | 149:156823d33999 | 2 | /** \addtogroup platform */ |
AnnaBridge | 178:79309dc6340a | 3 | /** @{*/ |
AnnaBridge | 178:79309dc6340a | 4 | /** |
AnnaBridge | 178:79309dc6340a | 5 | * \defgroup platform_PlatformMutex PlatformMutex class |
AnnaBridge | 178:79309dc6340a | 6 | * @{ |
AnnaBridge | 178:79309dc6340a | 7 | */ |
<> | 149:156823d33999 | 8 | /* mbed Microcontroller Library |
<> | 149:156823d33999 | 9 | * Copyright (c) 2006-2013 ARM Limited |
<> | 149:156823d33999 | 10 | * |
<> | 149:156823d33999 | 11 | * Licensed under the Apache License, Version 2.0 (the "License"); |
<> | 149:156823d33999 | 12 | * you may not use this file except in compliance with the License. |
<> | 149:156823d33999 | 13 | * You may obtain a copy of the License at |
<> | 149:156823d33999 | 14 | * |
<> | 149:156823d33999 | 15 | * http://www.apache.org/licenses/LICENSE-2.0 |
<> | 149:156823d33999 | 16 | * |
<> | 149:156823d33999 | 17 | * Unless required by applicable law or agreed to in writing, software |
<> | 149:156823d33999 | 18 | * distributed under the License is distributed on an "AS IS" BASIS, |
<> | 149:156823d33999 | 19 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
<> | 149:156823d33999 | 20 | * See the License for the specific language governing permissions and |
<> | 149:156823d33999 | 21 | * limitations under the License. |
<> | 149:156823d33999 | 22 | */ |
<> | 149:156823d33999 | 23 | #ifndef PLATFORM_MUTEX_H |
<> | 149:156823d33999 | 24 | #define PLATFORM_MUTEX_H |
<> | 149:156823d33999 | 25 | |
AnnaBridge | 168:9672193075cf | 26 | #include "platform/NonCopyable.h" |
AnnaBridge | 168:9672193075cf | 27 | |
<> | 149:156823d33999 | 28 | #ifdef MBED_CONF_RTOS_PRESENT |
<> | 149:156823d33999 | 29 | #include "rtos/Mutex.h" |
<> | 149:156823d33999 | 30 | typedef rtos::Mutex PlatformMutex; |
<> | 149:156823d33999 | 31 | #else |
<> | 149:156823d33999 | 32 | /** A stub mutex for when an RTOS is not present |
<> | 149:156823d33999 | 33 | */ |
AnnaBridge | 168:9672193075cf | 34 | class PlatformMutex : private mbed::NonCopyable<PlatformMutex> { |
<> | 149:156823d33999 | 35 | public: |
AnnaBridge | 187:0387e8f68319 | 36 | PlatformMutex() |
AnnaBridge | 187:0387e8f68319 | 37 | { |
<> | 149:156823d33999 | 38 | // Stub |
<> | 149:156823d33999 | 39 | |
<> | 149:156823d33999 | 40 | } |
AnnaBridge | 187:0387e8f68319 | 41 | ~PlatformMutex() |
AnnaBridge | 187:0387e8f68319 | 42 | { |
<> | 149:156823d33999 | 43 | // Stub |
<> | 149:156823d33999 | 44 | } |
<> | 149:156823d33999 | 45 | |
AnnaBridge | 187:0387e8f68319 | 46 | void lock() |
AnnaBridge | 187:0387e8f68319 | 47 | { |
<> | 149:156823d33999 | 48 | // Do nothing |
<> | 149:156823d33999 | 49 | } |
<> | 149:156823d33999 | 50 | |
AnnaBridge | 187:0387e8f68319 | 51 | void unlock() |
AnnaBridge | 187:0387e8f68319 | 52 | { |
<> | 149:156823d33999 | 53 | // Do nothing |
<> | 149:156823d33999 | 54 | } |
<> | 149:156823d33999 | 55 | }; |
<> | 149:156823d33999 | 56 | |
<> | 149:156823d33999 | 57 | #endif |
<> | 149:156823d33999 | 58 | |
<> | 149:156823d33999 | 59 | #endif |
<> | 149:156823d33999 | 60 | |
AnnaBridge | 178:79309dc6340a | 61 | /**@}*/ |
AnnaBridge | 178:79309dc6340a | 62 | |
AnnaBridge | 178:79309dc6340a | 63 | /**@}*/ |