Searched refs:mtx (Results 1 – 1 of 1) sorted by relevance
53 _Mtxinit(_Rmtx * mtx) in _Mtxinit() argument55 *mtx = xSemaphoreCreateRecursiveMutex(); in _Mtxinit()62 _Mtxdst(_Rmtx * mtx) in _Mtxdst() argument64 if ((mtx != NULL) && (*mtx != NULL)) { in _Mtxdst()65 vSemaphoreDelete(*mtx); in _Mtxdst()73 _Mtxlock(_Rmtx * mtx) in _Mtxlock() argument75 if ((mtx != NULL) && (*mtx != NULL)) { in _Mtxlock()76 xSemaphoreTakeRecursive(*mtx, portMAX_DELAY); in _Mtxlock()84 _Mtxunlock(_Rmtx * mtx) in _Mtxunlock() argument86 if ((mtx != NULL) && (*mtx != NULL)) { in _Mtxunlock()[all …]