kernel: convert mutex APIs to system calls
Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
diff --git a/include/kernel.h b/include/kernel.h
index fff139e..a34d27a 100644
--- a/include/kernel.h
+++ b/include/kernel.h
@@ -2454,7 +2454,7 @@
*
* @return N/A
*/
-extern void k_mutex_init(struct k_mutex *mutex);
+__syscall void k_mutex_init(struct k_mutex *mutex);
/**
* @brief Lock a mutex.
@@ -2474,7 +2474,7 @@
* @retval -EBUSY Returned without waiting.
* @retval -EAGAIN Waiting period timed out.
*/
-extern int k_mutex_lock(struct k_mutex *mutex, s32_t timeout);
+__syscall int k_mutex_lock(struct k_mutex *mutex, s32_t timeout);
/**
* @brief Unlock a mutex.
@@ -2490,7 +2490,7 @@
*
* @return N/A
*/
-extern void k_mutex_unlock(struct k_mutex *mutex);
+__syscall void k_mutex_unlock(struct k_mutex *mutex);
/**
* @} end defgroup mutex_apis