MCPcopy Index your code
hub / github.com/RT-Thread/rt-thread / lwp_pid_lock_release

Function lwp_pid_lock_release

components/lwp/lwp_pid.c:129–134  ·  view source on GitHub ↗

* @brief Release the PID management mutex lock * * @note This function should be called after lwp_pid_lock_take() */

Source from the content-addressed store, hash-verified

127 * @note This function should be called after lwp_pid_lock_take()
128 */
129void lwp_pid_lock_release(void)
130{
131 /* should never failed */
132 if (lwp_mutex_release_safe(&pid_mtx) != RT_EOK)
133 RT_ASSERT(0);
134}
135
136/**
137 * @brief Parameter structure for PID iteration callback

Callers 15

lwp_pid_for_eachFunction · 0.85
lwp_pid_putFunction · 0.85
lwp_createFunction · 0.85
lwp_pid2nameFunction · 0.85
lwp_name2pidFunction · 0.85
_verify_child_and_reapFunction · 0.85
cmd_killFunction · 0.85
cmd_killallFunction · 0.85
lwp_from_pid_and_lockFunction · 0.85
sys_getsidFunction · 0.85
sys_killFunction · 0.85
sys_getpriorityFunction · 0.85

Calls 1

lwp_mutex_release_safeFunction · 0.85

Tested by

no test coverage detected