|
ChibiOS/RT
2.5.1 |
#include <chmtx.h>

Data Fields | |
| ThreadsQueue | m_queue |
| Queue of the threads sleeping on this Mutex. | |
| Thread * | m_owner |
Owner Thread pointer or NULL. | |
| struct Mutex * | m_next |
Next Mutex into an owner-list or NULL. | |
Queue of the threads sleeping on this Mutex.
Definition at line 38 of file chmtx.h.
Referenced by chMtxInit(), chMtxLockS(), chMtxUnlock(), chMtxUnlockAll(), and chMtxUnlockS().
Owner Thread pointer or NULL.
Definition at line 40 of file chmtx.h.
Referenced by chMtxInit(), chMtxLockS(), chMtxTryLockS(), chMtxUnlock(), chMtxUnlockAll(), and chMtxUnlockS().
| struct Mutex* Mutex::m_next |
Next Mutex into an owner-list or NULL.
Definition at line 42 of file chmtx.h.
Referenced by chMtxLockS(), chMtxTryLockS(), chMtxUnlock(), chMtxUnlockAll(), and chMtxUnlockS().