ESP-IDF
pthread_mutex_lock_internal()
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
pthread_mutex_lock_internal()
pthread_mutex_lock_internal() function
Syntax
Show:
Summary
Declaration
Definition
from
pthread.c:71
static
int
pthread_mutex_lock_internal
(
esp_pthread_mutex_t
*
mux
,
TickType_t
tmo
)
;
Implemented in
pthread.c:700
Arguments
Argument
mux
tmo
Examples
References
from
examples
Code
Location
Referrer
static
int
pthread_mutex_lock_internal
(
esp_pthread_mutex_t
*
mux
,
TickType_t
tmo
)
pthread.c:700
static
int
pthread_mutex_lock_internal
(
esp_pthread_mutex_t
*
mux
,
TickType_t
tmo
)
;
pthread.c:71
int
res
=
pthread_mutex_lock_internal
(
mux
,
0
)
;
pthread.c:681
pthread_mutex_destroy()
return
pthread_mutex_lock_internal
(
(
esp_pthread_mutex_t
*
)
*
mutex
,
portMAX_DELAY
)
;
pthread.c:746
pthread_mutex_lock()
res
=
pthread_mutex_lock_internal
(
(
esp_pthread_mutex_t
*
)
*
mutex
,
tmo
)
;
pthread.c:764
pthread_mutex_timedlock()
return
pthread_mutex_lock_internal
(
(
esp_pthread_mutex_t
*
)
*
mutex
,
0
)
;
pthread.c:780
pthread_mutex_trylock()
Call Tree
from
examples
pthread_mutex_lock_internal()
is called by 4 functions and calls 4 functions:
pthread_mutex_destroy()
pthread_mutex_lock()
pthread_mutex_timedlock()
pthread_mutex_trylock()
All items filtered out
pthread_mutex_lock_internal()
xTaskGetCurrentTaskHandle()
xQueueSemaphoreTake()
xQueueGetMutexHolder()
xQueueTakeMutexRecursive()
All items filtered out
Data Use
from
examples
pthread_mutex_lock_internal()
reads 2 variables:
esp_pthread_mutex_t::sem
esp_pthread_mutex_t::type
All items filtered out
pthread_mutex_lock_internal()
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