ESP-IDF
s_log_mutex
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
s_log_mutex
s_log_mutex variable
Syntax
Show:
Summary
Declaration
from
log_lock.c:21
static
SemaphoreHandle_t
s_log_mutex
=
NULL
;
Examples
References
from
examples
Code
Location
Referrer
static
SemaphoreHandle_t
s_log_mutex
=
NULL
;
log_lock.c:21
if
(
unlikely
(
!
s_log_mutex
)
)
{
log_lock.c:25
esp_log_impl_lock()
s_log_mutex
=
xSemaphoreCreateMutex
(
)
;
log_lock.c:26
esp_log_impl_lock()
xSemaphoreTake
(
s_log_mutex
,
portMAX_DELAY
)
;
log_lock.c:31
esp_log_impl_lock()
if
(
unlikely
(
!
s_log_mutex
)
)
{
log_lock.c:36
esp_log_impl_lock_timeout()
s_log_mutex
=
xSemaphoreCreateMutex
(
)
;
log_lock.c:37
esp_log_impl_lock_timeout()
return
xSemaphoreTake
(
s_log_mutex
,
MAX_MUTEX_WAIT_TICKS
)
==
pdTRUE
;
log_lock.c:42
esp_log_impl_lock_timeout()
xSemaphoreGive
(
s_log_mutex
)
;
log_lock.c:50
esp_log_impl_unlock()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
s_log_mutex
is written by 2 functions and is read by 3 functions:
esp_log_impl_lock()
esp_log_impl_lock_timeout()
All items filtered out
s_log_mutex
esp_log_impl_lock()
esp_log_impl_lock_timeout()
esp_log_impl_unlock()
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