SkillAgentSearch skills...

Cbuffer

A circular buffer written in C using Posix calls to create a contiguously mapped memory space. BSD Licensed.

Install / Use

/learn @willemt/Cbuffer
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Circular buffers are tricky. The caller needs to know if the polled item crosses the maximum size of the underlying array.

This circular buffer uses a mmap magic trick to make the caller's life easier.

This is how we do it:

  1. mmap is used to mirror the buffer like below:

.. figure:: doc/circular_buffer_mmap.png

  1. the "mirrored" buffer is then placed beside the buffer. When the user polls the item it doesn't matter if the item crosses the buffer's boundary:

.. figure:: doc/circular_buffer_mmap_portal.png

Compatibility

This only works on UNIX systems.

Windows support existed in d10238600a82de32fe1cb01bec8667d3a67e382c but was removed. This is because Windows doesn't actually have mmap and trying to get the same behaviour is painful. Maybe you should check this out instead: https://github.com/willemt/bipbuffer

View on GitHub
GitHub Stars268
CategoryDevelopment
Updated2d ago
Forks42

Languages

C

Security Score

80/100

Audited on Mar 27, 2026

No findings