From b343fd2adba95ebe44659a27a00a3da9324cb971 Mon Sep 17 00:00:00 2001 From: Antoine Juckler <6445757+ajuckler@users.noreply.github.com> Date: Fri, 2 Feb 2024 14:49:06 +0900 Subject: [PATCH] Fix typo in mtx_timedlock --- include/threads.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/threads.h b/include/threads.h index 2449dc62e3..5044d47060 100644 --- a/include/threads.h +++ b/include/threads.h @@ -203,7 +203,7 @@ static inline int mtx_init(FAR mtx_t *mutex, int type) * int mtx_timedlock(FAR mtx_t *mutex, FAR const struct timespec *tp); */ -#define mtx_timedlock(mutex,tp) pthread_mutex_timedwait(mutex,tp) +#define mtx_timedlock(mutex,tp) pthread_mutex_timedlock(mutex,tp) /* mtx_trylock: locks a mutex or returns without blocking if already locked *