diff options
| author | HiFiPhile <[email protected]> | 2026-06-22 21:23:49 +0200 |
|---|---|---|
| committer | HiFiPhile <[email protected]> | 2026-06-22 21:23:49 +0200 |
| commit | f9698aedaebe9b6edd4a13670cd1bfcb35883136 (patch) | |
| tree | da067c482c0ff272bb9047db16758ec7c4c5d4cb /src/osal/osal_rtx4.h | |
| parent | f7617168e2ce2e7ea2e49cba5962b69aed04900e (diff) | |
osal: add missing osal_spin_deinit()
Signed-off-by: HiFiPhile <[email protected]>
Diffstat (limited to 'src/osal/osal_rtx4.h')
| -rw-r--r-- | src/osal/osal_rtx4.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/osal/osal_rtx4.h b/src/osal/osal_rtx4.h index 35860ddd5..813b351ff 100644 --- a/src/osal/osal_rtx4.h +++ b/src/osal/osal_rtx4.h @@ -67,6 +67,10 @@ TU_ATTR_ALWAYS_INLINE static inline void osal_spin_init(osal_spinlock_t *ctx) { (void) ctx; } +TU_ATTR_ALWAYS_INLINE static inline void osal_spin_deinit(osal_spinlock_t *ctx) { + (void) ctx; +} + TU_ATTR_ALWAYS_INLINE static inline void osal_spin_lock(osal_spinlock_t *ctx, bool in_isr) { (void) ctx; (void) in_isr; } |
