summaryrefslogtreecommitdiff
path: root/src/osal/osal.h
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2022-11-04 15:42:50 +0700
committerGitHub <[email protected]>2022-11-04 15:42:50 +0700
commitb554c2ed836527296dd0b79169db04fc2f68cf5a (patch)
tree34b25122fac701370b5883b7a878b6a7d92fd76f /src/osal/osal.h
parent35668fc523c7c972bf91f32dbb3b50ad8b4f3c74 (diff)
parent28f49c088bb0c498d730d80943017172061cfd05 (diff)
Merge branch 'master' into rp2040-hcd-bulk
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);
*/
//--------------------------------------------------------------------+