mirror of
https://github.com/apache/nuttx.git
synced 2026-08-01 20:28:58 +00:00
Fix typo in mtx_timedlock
This commit is contained in:
parent
03e90d9311
commit
b343fd2adb
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue