Home
last modified time | relevance | path

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

/hal_rpi_pico-latest/src/common/pico_sync/
Dmutex.c55 mtx->enter_count = 0; in recursive_mutex_init()
87 uint __unused total = ++mtx->enter_count; in __time_critical_func()
133 uint __unused total = ++mtx->enter_count; in __time_critical_func()
191 uint __unused total = ++mtx->enter_count; in __time_critical_func()
221 assert(mtx->enter_count); in __time_critical_func()
222 if (!--mtx->enter_count) { in __time_critical_func()
/hal_rpi_pico-latest/src/common/pico_sync/include/pico/
Dmutex.h50 uint8_t enter_count; //! ownership count member
306 …e = { .spin_lock = (spin_lock_t *)1 /* marker for runtime_init */ }, .owner = 0, .enter_count = 0 }
/hal_rpi_pico-latest/src/rp2_common/pico_async_context/
Dasync_context_threadsafe_background.c37 return mutex->enter_count; in recursive_mutex_enter_count()