RTOS接口-Semaphores

跟Linux下面的信号量的PV操作是一个思想

接口

/*Create and Initialize a Semaphore object.*/
osSemaphoreId_t  osSemaphoreNew (uint32_t max_count, uint32_t initial_count, const osSemaphoreAttr_t *attr)
 	
/*Get name of a Semaphore object.*/
const char *  osSemaphoreGetName (osSemaphoreId_t semaphore_id)
 	
/*Acquire a Semaphore token or timeout if no tokens are available.*/
osStatus_t 	osSemaphoreAcquire (osSemaphoreId_t semaphore_id, uint32_t timeout)
 	
/*Release a Semaphore token up to the initial maximum count.*/
osStatus_t 	osSemaphoreRelease (osSemaphoreId_t semaphore_id)
 	
/*Get current Semaphore token count.*/
uint32_t  osSemaphoreGetCount (osSemaphoreId_t semaphore_id)

/*Delete a Semaphore object.*/ 
osStatus_t 	osSemaphoreDelete (osSemaphoreId_t semaphore_id)
 	

代码举例

osSemaphoreId_t multiplex_id;
 
void thread_n (void) {
 
  multiplex_id = osSemaphoreNew(3U, 3U, NULL);
  while(1) {
    osSemaphoreAcquire(multiplex_id, osWaitForever);
    // do something
    osSemaphoreRelease(multiplex_id);
  }
}

当信号量的数量为1时,实现的功能就跟互斥锁没有区别了

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

映秀小子

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值