如何使用任何方法编写线程同步代码 - 例如..Cevent
你好,我正在尝试编写一个简单的应用程序,它将帮助我从串行端口读取数据并使用单个线程写入同一个串行端口...所以有人可以帮助我管理线程之间的同步吗?源代码 - Visual studio 6 中的整个项目文件 - http://rapidshare.com/files/ 406340281/SerialPortTest.rar
谢谢
Sayonee
hello there I am trying to code a simple application which would help me in reading from a serial port and write to the same serial port using a single thread ...so could someone please help me to manage the synchronization between the threads.heres the source code- the whole project file in Visual studio 6 - http://rapidshare.com/files/406340281/SerialPortTest.rar
Thanks
Sayonee
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加同步的最简单方法是使用 CRITICAL_SECTION。
尝试找到不应同时设置/执行的变量/函数/...,并使用关键部分保护它们。
The easiest way to add synchronization is to use a CRITICAL_SECTION.
Try to find variables/functions/... that shouldn't be set/executed at the same time and protect them using a critical section.