ESP-IDF
osi_thread::thread_handle
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (4/5)...
Files
loading (4/5)...
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::thread_handle
osi_thread::thread_handle field
Store the thread object
Syntax
Show:
Summary
Declaration
from
thread.c:39
TaskHandle_t
thread_handle
;
Examples
References
from
examples
Code
Location
Referrer
TaskHandle_t
thread_handle
;
/*!< Store the thread object */
thread.c:39
thread
->
thread_handle
=
NULL
;
thread.c:174
osi_thread_run()
if
(
ret
!=
0
&&
thread
->
thread_handle
)
{
thread.c:200
osi_thread_stop()
vTaskDelete
(
thread
->
thread_handle
)
;
thread.c:201
osi_thread_stop()
if
(
xTaskCreatePinnedToCore
(
osi_thread_run
,
name
,
stack_size
,
&
start_arg
,
priority
,
&
thread
->
thread_handle
,
core
)
!=
pdPASS
)
{
thread.c:253
osi_thread_create()
if
(
thread
->
thread_handle
)
{
thread.c:269
osi_thread_create()
vTaskDelete
(
thread
->
thread_handle
)
;
thread.c:270
osi_thread_create()
vTaskPrioritySet
(
thread
->
thread_handle
,
priority
)
;
thread.c:357
osi_thread_set_priority()
return
pcTaskGetName
(
thread
->
thread_handle
)
;
thread.c:365
osi_thread_name()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
osi_thread::thread_handle
is written by 1 function and is read by 4 functions:
osi_thread_run()
All items filtered out
osi_thread::thread_handle
osi_thread_stop()
osi_thread_create()
osi_thread_set_priority()
osi_thread_name()
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