Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PlatformMutex docs update #8536

Merged
merged 2 commits into from
Oct 27, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 43 additions & 15 deletions platform/PlatformMutex.h
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@

/** \addtogroup platform */
/** @{*/
/**
* \defgroup platform_PlatformMutex PlatformMutex class
* @{
*/
/* mbed Microcontroller Library
* Copyright (c) 2006-2013 ARM Limited
*
Expand All @@ -25,32 +18,67 @@

#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

#include "rtos/Mutex.h"
typedef rtos::Mutex PlatformMutex;

#else
/** A stub mutex for when an RTOS is not present
*/
class PlatformMutex : private mbed::NonCopyable<PlatformMutex> {

class PlatformMutex: private mbed::NonCopyable<PlatformMutex> {
public:
/** Create a PlatformMutex object.
*
* @note When the RTOS is present, this is an alias for rtos::Mutex::Mutex().
*/
PlatformMutex()
{
// Stub

}

/** PlatformMutex destructor.
*
* @note When the RTOS is present, this is an alias for rtos::Mutex::~Mutex().
*/
~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()
{
// 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()
{
// Do nothing
}
};

Expand Down