diff options
| author | hathach <[email protected]> | 2023-01-06 10:52:25 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2023-01-06 10:52:25 +0700 |
| commit | b42d298b8162de232b985879732e44d3c86c889f (patch) | |
| tree | 2bacfc31ceb09ea4c540a0f768eaf291cfc67980 /src/osal/osal_rtthread.h | |
| parent | 660343d2001c0ee943bf3e24cab6f235d3930b33 (diff) | |
| parent | 6e23c596ccb381aa606103727d2f19247822f3a3 (diff) | |
Merge branch 'master' into fix-fifo-memory-overflow
Diffstat (limited to 'src/osal/osal_rtthread.h')
| -rw-r--r-- | src/osal/osal_rtthread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osal/osal_rtthread.h b/src/osal/osal_rtthread.h index f8452bfb2..18eb9c693 100644 --- a/src/osal/osal_rtthread.h +++ b/src/osal/osal_rtthread.h @@ -63,7 +63,7 @@ TU_ATTR_ALWAYS_INLINE static inline bool osal_semaphore_wait(osal_semaphore_t se } TU_ATTR_ALWAYS_INLINE static inline void osal_semaphore_reset(osal_semaphore_t const sem_hdl) { - // TODO: implement + rt_sem_control(sem_hdl, RT_IPC_CMD_RESET, 0); } //--------------------------------------------------------------------+ |
