summaryrefslogtreecommitdiff
path: root/src/osal/osal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/osal/osal.h')
-rw-r--r--src/osal/osal.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/osal/osal.h b/src/osal/osal.h
index a33280425..3fa1ff6bf 100644
--- a/src/osal/osal.h
+++ b/src/osal/osal.h
@@ -76,7 +76,8 @@ typedef void (*osal_task_func_t)( void * );
// Should be implemented as static inline function in osal_port.h header
/*
void osal_spin_init(osal_spinlock_t *ctx);
- void osal_spin_lock(osal_spinlock_t *ctx, bool in_isr)
+ void osal_spin_deinit(osal_spinlock_t *ctx);
+ void osal_spin_lock(osal_spinlock_t *ctx, bool in_isr);
void osal_spin_unlock(osal_spinlock_t *ctx, bool in_isr);
osal_semaphore_t osal_semaphore_create(osal_semaphore_def_t* semdef);