Home
last modified time | relevance | path

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

/hal_espressif-latest/components/heap/
Dmulti_heap_platform.h20 #define MULTI_HEAP_LOCK(PLOCK) do { \ argument
21 if((PLOCK) != NULL) { \
22 portENTER_CRITICAL((PLOCK)); \
27 #define MULTI_HEAP_UNLOCK(PLOCK) do { \ argument
28 if ((PLOCK) != NULL) { \
29 portEXIT_CRITICAL((PLOCK)); \
33 #define MULTI_HEAP_LOCK_INIT(PLOCK) do { \ argument
34 portMUX_INITIALIZE((PLOCK)); \
84 #define MULTI_HEAP_LOCK(PLOCK) (void) (PLOCK) argument
85 #define MULTI_HEAP_UNLOCK(PLOCK) (void) (PLOCK) argument
[all …]