FreeRTOS
QueueDefinition::cTxLock
is only used within FreeRTOS.
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
FreeRTOS
QueueDefinition::cTxLock
QueueDefinition::cTxLock field
Syntax
Show:
Summary
Declaration
from
queue.c:116
volatile
int8_t
cTxLock
;
Examples
References
from
examples
Code
Location
Referrer
volatile
int8_t
cTxLock
;
/*< Stores the number of items transmitted to the queue (added to the queue) while the queue was locked. Set to queueUNLOCKED when the queue is not locked. */
queue.c:116
pxQueue
->
cTxLock
=
queueUNLOCKED
;
queue.c:268
xQueueGenericReset()
prvLockQueue
(
pxQueue
)
;
queue.c:903
xQueueGenericSend()
const
int8_t
cTxLock
=
pxQueue
->
cTxLock
;
queue.c:985
xQueueGenericSendFromISR()
pxQueue
->
cTxLock
=
(
int8_t
)
(
cTxLock
+
1
)
;
queue.c:1095
xQueueGenericSendFromISR()
const
int8_t
cTxLock
=
pxQueue
->
cTxLock
;
queue.c:1160
xQueueGiveFromISR()
pxQueue
->
cTxLock
=
(
int8_t
)
(
cTxLock
+
1
)
;
queue.c:1260
xQueueGiveFromISR()
prvLockQueue
(
pxQueue
)
;
queue.c:1368
xQueueReceive()
prvLockQueue
(
pxQueue
)
;
queue.c:1539
xQueueSemaphoreTake()
prvLockQueue
(
pxQueue
)
;
queue.c:1735
xQueuePeek()
int8_t
cTxLock
=
pxQueue
->
cTxLock
;
queue.c:2181
prvUnlockQueue()
pxQueue
->
cTxLock
=
queueUNLOCKED
;
queue.c:2255
prvUnlockQueue()
prvLockQueue
(
pxQueue
)
;
queue.c:2755
vQueueWaitForMessageRestricted()
const
int8_t
cTxLock
=
pxQueueSetContainer
->
cTxLock
;
queue.c:2894
prvNotifyQueueSetContainer()
pxQueueSetContainer
->
cTxLock
=
(
int8_t
)
(
cTxLock
+
1
)
;
queue.c:2922
prvNotifyQueueSetContainer()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
QueueDefinition::cTxLock
is written by 10 functions and is read by 9 functions:
xQueueGenericReset()
xQueueGenericSend()
xQueueGenericSendFromISR()
xQueueGiveFromISR()
xQueueReceive()
xQueueSemaphoreTake()
xQueuePeek()
prvUnlockQueue()
vQueueWaitForMessageRestricted()
prvNotifyQueueSetContainer()
All items filtered out
QueueDefinition::cTxLock
xQueueGenericSend()
xQueueGenericSendFromISR()
xQueueGiveFromISR()
xQueueReceive()
xQueueSemaphoreTake()
xQueuePeek()
prvUnlockQueue()
vQueueWaitForMessageRestricted()
prvNotifyQueueSetContainer()
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