Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
信号量_semaphore
用信号量做线程同步的一个小问题
发布于 2021-10-19 22:19:37 浏览:977
订阅该版
两个线程之间用信号量做同步,但发现发送线程只发一次的话,接受线程会重复执行,不知道什么原因。 ```c static void one_key_brew_entry(void *param) { rt_err_t ret = RT_EOK; //parse_formula(formula2); while(1) { LOG_D("========wating recv brew sem, start formula making the value is %d\n", brew_sem.value); rt_sem_take(&brew_sem, RT_WAITING_FOREVER); LOG_D("recv brew sem, start formula making the value is %d\n", brew_sem.value); if (g_start_brew_flag == 1) { parse_formula(formula4); g_start_brew_flag = 0; } rt_thread_mdelay(100); } } ``` ![image.png](https://oss-club.rt-thread.org/uploads/20211019/aab374a2697f551744ef4851a013eba6.png.webp) 就是第一次接受成功以后,然后执行完相关的parse_formula,按道理就直接等待 信号量,brew_sem,就可以,但不知为何,打印了好多次。已经获取到了信号量,确认,主线程,没有发新的信号量。
查看更多
3
个回答
默认排序
按发布时间排序
出出啊
2021-10-20
恃人不如自恃,人之为己者不如己之自为也
把关键的发送接收部分的代码贴出来嘛. 如果你开了finsh,这个时候用我刚做工具查看一下 brew_sem 信号量的详细内容,以及内存里的值正常不正常。详情请看我的最后一篇文章介绍。
李肯陪你玩赚嵌入式
认证专家
2021-10-20
2022年度和2023年度RT-Thread社区优秀开源布道师,COC深圳城市开发者社区主理人,专注于嵌入式物联网的架构设计
根据RRT对[rt_sem_take接口的介绍](https://docs.rt-thread.org/#/rt-thread-version/rt-thread-standard/programming-manual/ipc1/ipc1?id=%e4%bf%a1%e5%8f%b7%e9%87%8f): ![image.png](https://oss-club.rt-thread.org/uploads/20211020/a34811a4dffab556e2b98d77af82f855.png.webp) 以及源码里面的注释介绍: ``` /** * @brief This function will take a semaphore, if the semaphore is unavailable, the thread shall wait for * the semaphore up to a specified time. * * @note When this function is called, the count value of the sem->value will decrease 1 until it is equal to 0. * When the sem->value is 0, it means that the semaphore is unavailable. At this time, it will suspend the * thread preparing to take the semaphore. * On the contrary, the rt_sem_release() function will increase the count value of sem->value by 1 each time. * * @see rt_sem_trytake() * * @param sem is a pointer to a semaphore object. * * @param time is a timeout period (unit: an OS tick). If the semaphore is unavailable, the thread will wait for * the semaphore up to the amount of time specified by the argument. * NOTE: Generally, we use the macro RT_WAITING_FOREVER to set this parameter, which means that when the * semaphore is unavailable, the thread will be waitting forever. * * @return Return the operation status. ONLY When the return value is RT_EOK, the operation is successful. * If the return value is any other values, it means that the semaphore take failed. * * @warning This function can ONLY be called in the thread context. It MUST NOT BE called in interrupt context. */ rt_err_t rt_sem_take(rt_sem_t sem, rt_int32_t time) ``` ![image.png](https://oss-club.rt-thread.org/uploads/20211020/951c45c8774ffabc1956f5d3967c4052.png.webp) 我猜测你这种情况是一个接口返回error了,而不是ok,你可以使用int变量接收下这个接口的返回值。 还有一定,看你打印的brew_sem.value值为0,证明信号量此时是空的(大于0表示有信号量)。 还有办法,你可以把RT_DEBUG_IPC宏打开(rtdebug.h),调试下这个接口,我看到都有关键的log打印。
cxhxy12345
2021-10-20
这家伙很懒,什么也没写!
看了sem的值是0,也就是你并没有做信号释放(同步)的操作,但还是能你连续进入,这个要看下你的线程优先级级,因为在sem值=0的情况下,你take信号的方式是RT_WAITING_FOREVER,也就是time!=0。函数如下: ![image.png](https://oss-club.rt-thread.org/uploads/20211020/8c31aef5af614c7cee405cf93bcf23bb.png.webp) 这里会进入一个重新调度的状态,建议你做如下判断 ```c Value=rt_sem_take(sem_rx, RT_WAITING_FOREVER); ``` 将value 打印出来,看下获取信号后返回的是什么状态,再根据这个判断你的故障点在那里
撰写答案
登录
注册新账号
关注者
0
被浏览
977
关于作者
小住住
这家伙很懒,什么也没写!
提问
129
回答
126
被采纳
2
关注TA
发私信
相关问题
1
怎样可以将信号量复位为初始值
2
rt_sem_take 引起段错误
3
生产者消费者中是否可以使用一个事件集来代替多个二值信号量?
4
看RTT文档,不太懂有关信号量的死锁问题
5
这样使用UART接收一帧数据的方法是否可行
6
一对多线程间通信的问题
7
动态内存堆 保护全局变量lfree,为什么用信号量而不是互斥信号量
8
二值信号量的使用问题
9
USART1_IRQHandler串口中断接收问题
10
开发文档semaphore_sample.c有问题
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
最新文章
1
rt-thread 小内存算法源码分析
2
env中添加lvgl软件包后,keil编译包--c99错误
3
【NXP-MCXA153】 定时器驱动移植
4
GD32F450 看门狗驱动适配
5
【NXP-MCXA153】看门狗驱动移植
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
UART
WIZnet_W5500
ota在线升级
PWM
freemodbus
flash
cubemx
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
编译报错
Debug
rt_mq_消息队列_msg_queue
SFUD
keil_MDK
msh
ulog
C++_cpp
MicroPython
本月问答贡献
踩姑娘的小蘑菇
7
个答案
2
次被采纳
a1012112796
18
个答案
1
次被采纳
红枫
5
个答案
1
次被采纳
Ryan_CW
5
个答案
1
次被采纳
张世争
4
个答案
1
次被采纳
本月文章贡献
YZRD
3
篇文章
6
次点赞
catcatbing
3
篇文章
6
次点赞
lizimu
2
篇文章
11
次点赞
qq1078249029
2
篇文章
2
次点赞
xnosky
2
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部