ESPHome
2024.11.1
|
Mutex implementation, with API based on the unavailable std::mutex. More...
#include <helpers.h>
Public Member Functions | |
Mutex () | |
Mutex (const Mutex &)=delete | |
~Mutex () | |
void | lock () |
bool | try_lock () |
void | unlock () |
Mutex & | operator= (const Mutex &)=delete |
Mutex implementation, with API based on the unavailable std::mutex.
esphome::Mutex::Mutex | ( | ) |
Definition at line 626 of file helpers.cpp.
|
delete |
esphome::Mutex::~Mutex | ( | ) |
Definition at line 627 of file helpers.cpp.
void esphome::Mutex::lock | ( | ) |
Definition at line 628 of file helpers.cpp.
bool esphome::Mutex::try_lock | ( | ) |
Definition at line 629 of file helpers.cpp.
void esphome::Mutex::unlock | ( | ) |
Definition at line 630 of file helpers.cpp.