arena-based memory allocation. using mmap features
  • C++ 98.5%
  • CMake 1.5%
Find a file
2026-01-07 18:10:36 -05:00
cmake xo-arena: annex cmpresult.*pp from xo-alloc2 2026-01-06 00:30:40 -05:00
docs xo-arena: + docs 2026-01-06 12:10:05 -05:00
include/xo/arena xo-arena: verify SM2.1 in DArenaHashMap.verify_ok 2026-01-07 18:10:36 -05:00
src/arena xo-arena: tidy DArena debug logging 2026-01-06 16:36:24 -05:00
utest xo-indentlog xo-arena: improve verify_ok logging workflow 2026-01-07 17:56:38 -05:00
CMakeLists.txt xo-arena: DArena unit test 2026-01-06 15:34:51 -05:00

build

        +-----------------------------------------------+
        | cmake                                         |
        |   CMakeLists.txt                              |
        |   $PREFIX/share/cmake/xo_macros/xo_cxx.cmake  |
        +-----------------------------------------------+
           |
           |                                                  +----------------------+
           +------------------------------------------------->| .build/docs/Doxyfile |
           |                                                  +----------------------+
           |                                                     |
           |                                        /------------/
           |                                        |
           |                                        v
           |     +---------------------------------------+    +-----------------+
           +---->| doxygen                               |--->| .build/docs/dox |
           |     |   $PREFIX/share/xo-macros/Doxyfile.in |    |   +- html/      |
           |     +---------------------------------------+    |   +- xml/       |
           |                                                  +-----------------+
           |                                                     |
           |                                        /------------/
           |                                        |
           |                                        v
           |     +---------------------------------------+    +--------------------+
           \---->| sphinx                                |--->| .build/docs/sphinx |
                 |   +- conf.py                          |    |   +- html/         |
                 |   +- _static/                         |    +--------------------+
                 |   +- *.rst                            |
                 +---------------------------------------+

files

   README            this file
   CMakeLists.txt    build entry point
   conf.py           sphinx config
   _static           static files for sphinx

map

   index.rst
   +- examples.rst
   +- ArenaConfig-reference.rst
   +- DArena-reference.rst
   +- DArenaIterator-reference.rst
   +- AllocInfo-reference.rst
   +- cmpresult-reference.rst
   +- glossary.rst
   ...

examples

.. doxygenclass:: ${c++ class name}
   :project:
   :path:
   :members:
   :protected-members:
   :private-members:
   :undoc-members:
   :member-groups:
   :members-only:
   :outline:
   :no-link:
   :allow-dot-graphs:

.. doxygendefine:: ${c preprocessor define}

.. doxygenconcept:: ${c++ concept definition}

.. doxygenenum:: ${c++ enum definition}

.. doxygenfunction:: ${c++ function name}