tracing: add missing end_call for k_mutex_unlock

k_mutex_unlock had no end_call tracing call.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2019-09-29 09:48:59 -04:00
commit 0bf1f9a408

View file

@ -252,6 +252,7 @@ void z_impl_k_mutex_unlock(struct k_mutex *mutex)
k_mutex_unlock_return:
k_sched_unlock();
sys_trace_end_call(SYS_TRACE_ID_MUTEX_UNLOCK);
}
#ifdef CONFIG_USERSPACE