threadx
txfr_sem::mutex
is only used within threadx.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
STM32 Libraries and Samples
threadx
txfr_sem::mutex
txfr_sem::mutex field
Syntax
Show:
Summary
Declaration
from
FreeRTOS.h:191
TX_MUTEX
mutex
;
Examples
References
from
examples
Code
Location
Referrer
TX_MUTEX
mutex
;
FreeRTOS.h:191
ret
=
tx_mutex_create
(
&
p_sem
->
mutex
,
""
,
TX_NO_INHERIT
)
;
tx_freertos.c:1144
xSemaphoreCreateMutex()
ret
=
tx_mutex_create
(
&
pxMutexBuffer
->
mutex
,
""
,
TX_NO_INHERIT
)
;
tx_freertos.c:1165
xSemaphoreCreateMutexStatic()
ret
=
tx_mutex_create
(
&
p_sem
->
mutex
,
""
,
TX_INHERIT
)
;
tx_freertos.c:1195
xSemaphoreCreateRecursiveMutex()
ret
=
tx_mutex_create
(
&
pxMutexBuffer
->
mutex
,
""
,
TX_INHERIT
)
;
tx_freertos.c:1222
xSemaphoreCreateRecursiveMutexStatic()
ret
=
tx_mutex_delete
(
&
xSemaphore
->
mutex
)
;
tx_freertos.c:1239
vSemaphoreDelete()
if
(
xSemaphore
->
mutex
.
tx_mutex_owner
==
tx_thread_identify
(
)
)
{
tx_freertos.c:1267
xSemaphoreTake()
ret
=
tx_mutex_get
(
&
xSemaphore
->
mutex
,
timeout
)
;
tx_freertos.c:1270
xSemaphoreTake()
ret
=
tx_mutex_get
(
&
xMutex
->
mutex
,
timeout
)
;
tx_freertos.c:1318
xSemaphoreTakeRecursive()
ret
=
tx_mutex_put
(
&
xSemaphore
->
mutex
)
;
tx_freertos.c:1341
xSemaphoreGive()
return
xMutex
->
mutex
.
tx_mutex_owner
->
txfr_thread_ptr
;
tx_freertos.c:1422
xSemaphoreGetMutexHolder()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
txfr_sem::mutex
is read by 2 functions:
All items filtered out
txfr_sem::mutex
xSemaphoreTake()
xSemaphoreGetMutexHolder()
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out