具有可变大小项目的循环缓冲区实现

发布于 2024-11-30 08:44:08 字数 160 浏览 0 评论 0原文

我需要用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千纸鹤带着心事 2024-12-07 08:44:08

您可以将其视为循环二进制流。也就是说,如果添加一个元素,您将写入数据,而不是弹出它,您将读取它。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文