ESP-IDF
osi_thread_post()
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (3/5)...
Files
loading (4/5)...
Summary
Syntax
Arguments
Related
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
osi_thread_post()
osi_thread_post() function
Syntax
Show:
Summary
Declaration
Definition
from
thread.h:59
bool
osi_thread_post
(
osi_thread_t
*
thread
,
osi_thread_func_t
func
,
void
*
context
,
int
queue_idx
,
uint32_t
timeout
)
;
Implemented in
thread.c:330
Arguments
Argument
thread
func
context
queue_idx
timeout
Related Functions
Found 8 other functions taking a
osi_thread
argument:
Function
osi_event_bind()
osi_thread_free()
osi_thread_queue_wait_size()
osi_thread_set_priority()
osi_thread_name()
osi_thread_join()
osi_thread_stop()
hci_hal_env_init()
Examples
References
from
examples
Code
Location
Referrer
bool
osi_thread_post
(
osi_thread_t
*
thread
,
osi_thread_func_t
func
,
void
*
context
,
int
queue_idx
,
uint32_t
timeout
)
thread.c:330
bool
osi_thread_post
(
osi_thread_t
*
thread
,
osi_thread_func_t
func
,
void
*
context
,
int
queue_idx
,
uint32_t
timeout
)
;
thread.h:59
if
(
osi_thread_post
(
btc_thread
,
btc_thread_handler
,
msg
,
0
,
timeout
)
==
false
)
{
btc_task.c:290
btc_task_post()
status
=
osi_thread_post
(
btu_thread
,
btu_task_start_up
,
param
,
0
,
timeout
)
;
btu_task.c:225
btu_task_post()
status
=
osi_thread_post
(
btu_thread
,
btu_hci_msg_process
,
param
,
0
,
timeout
)
;
btu_task.c:228
btu_task_post()
status
=
osi_thread_post
(
btu_thread
,
bta_sys_event
,
param
,
0
,
timeout
)
;
btu_task.c:244
btu_task_post()
status
=
osi_thread_post
(
btu_thread
,
btu_bta_alarm_process
,
param
,
0
,
timeout
)
;
btu_task.c:247
btu_task_post()
status
=
osi_thread_post
(
btu_thread
,
btu_general_alarm_process
,
param
,
0
,
timeout
)
;
btu_task.c:252
btu_task_post()
status
=
osi_thread_post
(
btu_thread
,
btu_l2cap_alarm_process
,
param
,
0
,
timeout
)
;
btu_task.c:255
btu_task_post()
ret
=
osi_thread_post
(
event
->
thread
,
osi_thread_generic_event_handler
,
event
,
event
->
queue_idx
,
timeout
)
;
thread.c:442
osi_thread_post_event()
Call Tree
from
examples
osi_thread_post()
is called by 3 functions and calls 3 functions:
osi_thread_post_event()
btc_task_post()
btu_task_post()
All items filtered out
osi_thread_post()
__assert_func()
osi_sem_give()
osi_thead_work_queue_put()
All items filtered out
Data Use
from
examples
osi_thread_post()
reads 2 variables and writes 2 variables:
osi_thread::work_queue_num
osi_thread::work_queues
All items filtered out
osi_thread_post()
work_item::func
work_item::context
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