具有可变大小项目的循环缓冲区实现
我需要用 C 语言编写一个共享缓冲区(1R 线程/1W 线程),以将二进制程序输出异步转储到 I/O。 在编写简单的共享缓冲区时,我通常使用经典的循环缓冲区实现,但在这种情况下,缓冲区中每个项目的大小是可变的并且在编译时未知。 我想知道具有可变大小项目的循环缓冲区的可能实现是什么。
谢谢。
I need to code a shared buffer (1R thread/1W thread) in C to asynchronously dump binary program output to I/O.
I normally use the classical circular buffer implementation when it comes to write a simple shared buffer, but in this case the size of each item on the buffer is variable and not-known at compile time.
I was wondering what is a possible implementation of a circular buffer with variable-sized items.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将其视为循环二进制流。也就是说,如果添加一个元素,您将写入数据,而不是弹出它,您将读取它。
You may think of it as a circular binary stream. That is, instead if adding an element you'll write the data, instead of popping it you'll read it.