aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel/include/chmtx.h
diff options
context:
space:
mode:
Diffstat (limited to 'os/kernel/include/chmtx.h')
-rw-r--r--os/kernel/include/chmtx.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/os/kernel/include/chmtx.h b/os/kernel/include/chmtx.h
index 589caccba..d6f2ddf3d 100644
--- a/os/kernel/include/chmtx.h
+++ b/os/kernel/include/chmtx.h
@@ -89,11 +89,11 @@ typedef struct mutex {
#ifdef __cplusplus
extern "C" {
#endif
- void chMtxInit(mutex_t *mp);
+ void chMtxObjectInit(mutex_t *mp);
void chMtxLock(mutex_t *mp);
void chMtxLockS(mutex_t *mp);
- bool_t chMtxTryLock(mutex_t *mp);
- bool_t chMtxTryLockS(mutex_t *mp);
+ bool chMtxTryLock(mutex_t *mp);
+ bool chMtxTryLockS(mutex_t *mp);
mutex_t *chMtxUnlock(void);
mutex_t *chMtxUnlockS(void);
void chMtxUnlockAll(void);