12345678910111213141516171819202122232425262728293031 |
- #ifndef SUNXI_HAL_MUTEX_H
- #define SUNXI_HAL_MUTEX_H
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- #ifdef CONFIG_KERNEL_FREERTOS
- #include <FreeRTOS.h>
- #include <semphr.h>
- typedef SemaphoreHandle_t hal_mutex_t;
- #else
- #include <rtthread.h>
- typedef rt_mutex_t hal_mutex_t;
- #endif
- #include <stdint.h>
- #include <stddef.h>
- hal_mutex_t hal_mutex_create(void);
- int hal_mutex_delete(hal_mutex_t mutex);
- int hal_mutex_lock(hal_mutex_t mutex);
- int hal_mutex_unlock(hal_mutex_t mutex);
- int hal_mutex_trylock(hal_mutex_t mutex);
- int hal_mutex_timedwait(hal_mutex_t mutex, int ticks);
- #ifdef __cplusplus
- }
- #endif
- #endif
|