ESP-IDF
work_queue::queue
is only used within ESP-IDF.
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
ESP-IDF Framework and Examples
ESP-IDF
work_queue::queue
work_queue::queue field
Syntax
Show:
Summary
Declaration
from
thread.c:34
QueueHandle_t
queue
;
Examples
References
from
examples
Code
Location
Referrer
QueueHandle_t
queue
;
thread.c:34
wq
->
queue
=
xQueueCreate
(
capacity
,
sizeof
(
struct
work_item
)
)
;
thread.c:72
osi_work_queue_create()
if
(
wq
->
queue
!=
0
)
{
thread.c:73
osi_work_queue_create()
if
(
wq
->
queue
!=
0
)
{
thread.c:87
osi_work_queue_delete()
vQueueDelete
(
wq
->
queue
)
;
thread.c:88
osi_work_queue_delete()
wq
->
queue
=
0
;
thread.c:90
osi_work_queue_delete()
assert
(
wq
->
queue
!=
0
)
;
thread.c:100
osi_thead_work_queue_get()
if
(
pdTRUE
==
xQueueReceive
(
wq
->
queue
,
item
,
0
)
)
{
thread.c:103
osi_thead_work_queue_get()
assert
(
wq
->
queue
!=
0
)
;
thread.c:113
osi_thead_work_queue_put()
if
(
xQueueSend
(
wq
->
queue
,
item
,
portMAX_DELAY
)
!=
pdTRUE
)
{
thread.c:118
osi_thead_work_queue_put()
if
(
xQueueSend
(
wq
->
queue
,
item
,
timeout
/
portTICK_PERIOD_MS
)
!=
pdTRUE
)
{
thread.c:122
osi_thead_work_queue_put()
assert
(
wq
->
queue
!=
0
)
;
thread.c:133
osi_thead_work_queue_len()
size_t
available_spaces
=
(
size_t
)
uxQueueSpacesAvailable
(
wq
->
queue
)
;
thread.c:136
osi_thead_work_queue_len()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
work_queue::queue
is written by 2 functions and is read by 5 functions:
osi_work_queue_create()
osi_work_queue_delete()
All items filtered out
work_queue::queue
osi_work_queue_create()
osi_work_queue_delete()
osi_thead_work_queue_get()
osi_thead_work_queue_put()
osi_thead_work_queue_len()
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