ESP-IDF
osi_thread::work_queues
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
osi_thread::work_queues
osi_thread::work_queues field
Point to queue array, and the priority inverse array index
Syntax
Show:
Summary
Declaration
from
thread.c:43
struct
work_queue
*
*
work_queues
;
Examples
References
from
examples
Code
Location
Referrer
struct
work_queue
*
*
work_queues
;
/*!< Point to queue array, and the priority inverse array index */
thread.c:43
if
(
osi_thead_work_queue_get
(
thread
->
work_queues
[
idx
]
,
&
item
)
==
true
)
{
thread.c:164
osi_thread_run()
thread
->
work_queues
=
(
struct
work_queue
*
*
)
osi_calloc
(
sizeof
(
struct
work_queue
*
)
*
work_queue_num
)
;
thread.c:223
osi_thread_create()
if
(
thread
->
work_queues
==
NULL
)
{
thread.c:224
osi_thread_create()
thread
->
work_queues
[
i
]
=
osi_work_queue_create
(
queue_len
)
;
thread.c:231
osi_thread_create()
if
(
thread
->
work_queues
[
i
]
==
NULL
)
{
thread.c:232
osi_thread_create()
if
(
thread
->
work_queues
&&
thread
->
work_queues
[
i
]
)
{
thread.c:274
osi_thread_create()
osi_work_queue_delete
(
thread
->
work_queues
[
i
]
)
;
thread.c:275
osi_thread_create()
thread
->
work_queues
[
i
]
=
NULL
;
thread.c:276
osi_thread_create()
if
(
thread
->
work_queues
)
{
thread.c:280
osi_thread_create()
osi_free
(
thread
->
work_queues
)
;
thread.c:281
osi_thread_create()
thread
->
work_queues
=
NULL
;
thread.c:282
osi_thread_create()
if
(
thread
->
work_queues
[
i
]
)
{
thread.c:307
osi_thread_free()
osi_work_queue_delete
(
thread
->
work_queues
[
i
]
)
;
thread.c:308
osi_thread_free()
thread
->
work_queues
[
i
]
=
NULL
;
thread.c:309
osi_thread_free()
if
(
thread
->
work_queues
)
{
thread.c:313
osi_thread_free()
osi_free
(
thread
->
work_queues
)
;
thread.c:314
osi_thread_free()
thread
->
work_queues
=
NULL
;
thread.c:315
osi_thread_free()
if
(
osi_thead_work_queue_put
(
thread
->
work_queues
[
queue_idx
]
,
&
item
,
timeout
)
==
false
)
{
thread.c:344
osi_thread_post()
return
(
int
)
(
osi_thead_work_queue_len
(
thread
->
work_queues
[
wq_idx
]
)
)
;
thread.c:374
osi_thread_queue_wait_size()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
osi_thread::work_queues
is written by 2 functions and is read by 5 functions:
osi_thread_create()
osi_thread_free()
All items filtered out
osi_thread::work_queues
osi_thread_run()
osi_thread_create()
osi_thread_free()
osi_thread_post()
osi_thread_queue_wait_size()
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