Lines Matching refs:PLOCK
25 #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
91 #define MULTI_HEAP_LOCK_INIT(PLOCK) (void) (PLOCK) argument