⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sys_sem.h

📁 abstract rtos
💻 H
字号:
#ifdef __cplusplus#if __cplusplusextern "C"{#endif #endif #ifndef __INC_SYS_SEM_H__#define __INC_SYS_SEM_H__typedef	HANDLE	SYS_SEM_T;AOS_INLINE U32 sys_sem_create( S8 name[AOS_NAME_LEN+1], U32 flags, U32 value, SYS_SEM_T *sem );AOS_INLINE U32 sys_sem_cancel(SYS_SEM_T *sem);AOS_INLINE U32 sys_sem_wait( SYS_SEM_T *sem, U32 time_out );AOS_INLINE U32 sys_sem_trywait( SYS_SEM_T *sem );AOS_INLINE U32 sys_sem_post( SYS_SEM_T *sem );#endif#ifdef __cplusplus#if __cplusplus}#endif #endif 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -