用native c win32编写的循环缓冲区
我需要一个用 c 编写的(线程安全)循环缓冲区的良好实现。 有人知道我可以在哪里得到它吗?
谢谢!
I need a good implementation of a (thread safe) cyclic buffer written in c.
Does anybody know where i can get it?
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您看过这条维基百科记录吗?他们给出了一个例子,并且有更多的外部链接。
至于线程安全访问,只需在需要时用您自己的对象包装该对象,然后对其抛出 lock() /unlock() 。
Have you looked at this wikipedia record? They give an example, and have more external links.
As for thread-safe access just wrap the object with your own if needed, and throw a lock() / unlock() at it.