Home
last modified time | relevance | path

Searched refs:PLOCK (Results 1 – 1 of 1) sorted by relevance

/hal_espressif-3.4.0/components/heap/
Dmulti_heap_platform.h25 #define MULTI_HEAP_LOCK(PLOCK) do { \ argument
26 if((PLOCK) != NULL) { \
27 portENTER_CRITICAL((PLOCK)); \
32 #define MULTI_HEAP_UNLOCK(PLOCK) do { \ argument
33 if ((PLOCK) != NULL) { \
34 portEXIT_CRITICAL((PLOCK)); \
38 #define MULTI_HEAP_LOCK_INIT(PLOCK) do { \ argument
39 portMUX_INITIALIZE((PLOCK)); \
89 #define MULTI_HEAP_LOCK(PLOCK) (void) (PLOCK) argument
90 #define MULTI_HEAP_UNLOCK(PLOCK) (void) (PLOCK) argument
[all …]