Home
last modified time | relevance | path

Searched refs:mtx (Results 1 – 1 of 1) sorted by relevance

/Kernel-v11.1.0/portable/ThirdParty/XCC/Xtensa/
Dportclib.c53 _Mtxinit(_Rmtx * mtx) in _Mtxinit() argument
55 *mtx = xSemaphoreCreateRecursiveMutex(); in _Mtxinit()
62 _Mtxdst(_Rmtx * mtx) in _Mtxdst() argument
64 if ((mtx != NULL) && (*mtx != NULL)) { in _Mtxdst()
65 vSemaphoreDelete(*mtx); in _Mtxdst()
73 _Mtxlock(_Rmtx * mtx) in _Mtxlock() argument
75 if ((mtx != NULL) && (*mtx != NULL)) { in _Mtxlock()
76 xSemaphoreTakeRecursive(*mtx, portMAX_DELAY); in _Mtxlock()
84 _Mtxunlock(_Rmtx * mtx) in _Mtxunlock() argument
86 if ((mtx != NULL) && (*mtx != NULL)) { in _Mtxunlock()
[all …]