Home
last modified time | relevance | path

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

/Kernel-v11.0.1/portable/ThirdParty/XCC/Xtensa/
Dportclib.c52 void _Mtxinit( _Rmtx * mtx ) in _Mtxinit() argument
54 *mtx = xSemaphoreCreateRecursiveMutex(); in _Mtxinit()
60 void _Mtxdst( _Rmtx * mtx ) in _Mtxdst() argument
62 if( ( mtx != NULL ) && ( *mtx != NULL ) ) in _Mtxdst()
64 vSemaphoreDelete( *mtx ); in _Mtxdst()
71 void _Mtxlock( _Rmtx * mtx ) in _Mtxlock() argument
73 if( ( mtx != NULL ) && ( *mtx != NULL ) ) in _Mtxlock()
75 xSemaphoreTakeRecursive( *mtx, portMAX_DELAY ); in _Mtxlock()
82 void _Mtxunlock( _Rmtx * mtx ) in _Mtxunlock() argument
84 if( ( mtx != NULL ) && ( *mtx != NULL ) ) in _Mtxunlock()
[all …]