Merge branch 'docs_update-platformmutex' of ssh://github.com/fkjagodzinski/mbed-os into rollup

pull/8552/head
Cruz Monrreal II 2018-10-25 21:49:39 -05:00
commit 5da4fe7e20
1 changed files with 43 additions and 15 deletions

View File

@ -1,10 +1,3 @@
/** \addtogroup platform */
/** @{*/
/**
* \defgroup platform_PlatformMutex PlatformMutex class
* @{
*/
/* mbed Microcontroller Library /* mbed Microcontroller Library
* Copyright (c) 2006-2013 ARM Limited * Copyright (c) 2006-2013 ARM Limited
* *
@ -25,32 +18,67 @@
#include "platform/NonCopyable.h" #include "platform/NonCopyable.h"
/** \addtogroup platform
* @{
*/
/** \defgroup platform_PlatformMutex PlatformMutex class
* @{
*/
/** The PlatformMutex class is used to synchronize the execution of threads.
*
* Mbed drivers use the PlatformMutex class instead of rtos::Mutex.
* This enables the use of drivers when the Mbed OS is compiled without the RTOS.
*
* @note
* - When the RTOS is present, the PlatformMutex becomes a typedef for rtos::Mutex.
* - When the RTOS is absent, all methods are defined as noop.
*/
#ifdef MBED_CONF_RTOS_PRESENT #ifdef MBED_CONF_RTOS_PRESENT
#include "rtos/Mutex.h" #include "rtos/Mutex.h"
typedef rtos::Mutex PlatformMutex; typedef rtos::Mutex PlatformMutex;
#else #else
/** A stub mutex for when an RTOS is not present
*/ class PlatformMutex: private mbed::NonCopyable<PlatformMutex> {
class PlatformMutex : private mbed::NonCopyable<PlatformMutex> {
public: public:
/** Create a PlatformMutex object.
*
* @note When the RTOS is present, this is an alias for rtos::Mutex::Mutex().
*/
PlatformMutex() PlatformMutex()
{ {
// Stub
} }
/** PlatformMutex destructor.
*
* @note When the RTOS is present, this is an alias for rtos::Mutex::~Mutex().
*/
~PlatformMutex() ~PlatformMutex()
{ {
// Stub
} }
/** Wait until a PlatformMutex becomes available.
*
* @note
* - When the RTOS is present, this is an alias for rtos::Mutex::lock().
* - When the RTOS is absent, this is a noop.
*/
void lock() void lock()
{ {
// Do nothing
} }
/** Unlock a PlatformMutex that the same thread has previously locked.
*
* @note
* - When the RTOS is present, this is an alias for rtos::Mutex::unlock().
* - When the RTOS is absent, this is a noop.
*/
void unlock() void unlock()
{ {
// Do nothing
} }
}; };