summaryrefslogtreecommitdiff
path: root/src/osal/osal.h
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2022-04-20 23:32:50 +0700
committerGitHub <[email protected]>2022-04-20 23:32:50 +0700
commit55a5fd59d7263289f5c26d52ab206ed571cc1e0c (patch)
tree17f0c6d038ea9a73fdc78d94f15e50f2b3233b5c /src/osal/osal.h
parent9c8c5c1c53214b8954bb28c33a496b5b423d5ecc (diff)
parent87572871d586856242c1fa44b1532a09e624162d (diff)
Merge pull request #1440 from hathach/osal-queue-timeout
Osal queue timeout
Diffstat (limited to 'src/osal/osal.h')
-rw-r--r--src/osal/osal.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/osal/osal.h b/src/osal/osal.h
index 7111bbdb2..9d11866df 100644
--- a/src/osal/osal.h
+++ b/src/osal/osal.h
@@ -66,19 +66,19 @@ typedef void (*osal_task_func_t)( void * );
// OSAL Porting API
// Should be implemented as static inline function in osal_port.h header
/*
- static inline osal_semaphore_t osal_semaphore_create(osal_semaphore_def_t* semdef);
- static inline bool osal_semaphore_post(osal_semaphore_t sem_hdl, bool in_isr);
- static inline bool osal_semaphore_wait(osal_semaphore_t sem_hdl, uint32_t msec);
- static inline void osal_semaphore_reset(osal_semaphore_t sem_hdl); // TODO removed
+ osal_semaphore_t osal_semaphore_create(osal_semaphore_def_t* semdef);
+ bool osal_semaphore_post(osal_semaphore_t sem_hdl, bool in_isr);
+ bool osal_semaphore_wait(osal_semaphore_t sem_hdl, uint32_t msec);
+ void osal_semaphore_reset(osal_semaphore_t sem_hdl); // TODO removed
- static inline osal_mutex_t osal_mutex_create(osal_mutex_def_t* mdef);
- static inline bool osal_mutex_lock (osal_mutex_t sem_hdl, uint32_t msec);
- static inline bool osal_mutex_unlock(osal_mutex_t mutex_hdl);
+ osal_mutex_t osal_mutex_create(osal_mutex_def_t* mdef);
+ bool osal_mutex_lock (osal_mutex_t sem_hdl, uint32_t msec);
+ bool osal_mutex_unlock(osal_mutex_t mutex_hdl);
- static inline osal_queue_t osal_queue_create(osal_queue_def_t* qdef);
- static inline bool osal_queue_receive(osal_queue_t qhdl, void* data);
- static inline bool osal_queue_send(osal_queue_t qhdl, void const * data, bool in_isr);
- static inline bool osal_queue_empty(osal_queue_t qhdl);
+ osal_queue_t osal_queue_create(osal_queue_def_t* qdef);
+ bool osal_queue_receive(osal_queue_t qhdl, void* data, uint32_t msec);
+ bool osal_queue_send(osal_queue_t qhdl, void const * data, bool in_isr);
+ bool osal_queue_empty(osal_queue_t qhdl);
*/
//--------------------------------------------------------------------+