The mulle-concurrent-linkedlist is a barebones lock- and wait-free linked list, that is used by mulle-aba and the mulle-objc-runtime. A single-threaded variant mulle-linkedlist is also supplied.
| Release Version | Release Notes | AI Documentation | 
|---|---|---|
| RELEASENOTES | DeepWiki for mulle-linkedlist | 
| Data Structure | Description | 
|---|---|
| mulle-concurrent-linkedlist | A wait and lock free linked list | 
This project is a component of the mulle-core library. As such you usually will not add or install it
individually, unless you specifically do not want to link against
mulle-core.
Use mulle-sde to add mulle-linkedlist to your project:
mulle-sde add github:mulle-concurrent/mulle-linkedlistTo only add the sources of mulle-linkedlist with dependency sources use clib:
clib install --out src/mulle-concurrent mulle-concurrent/mulle-linkedlistAdd -isystem src/mulle-concurrent to your CFLAGS and compile all the sources that were downloaded with your project.
Use mulle-sde to build and install mulle-linkedlist and all dependencies:
mulle-sde install --prefix /usr/local \
   https://github.com/mulle-concurrent/mulle-linkedlist/archive/latest.tar.gzInstall the requirements:
| Requirements | Description | 
|---|---|
| mulle-c11 | π Cross-platform C compiler glue (and some cpp conveniences) | 
| mulle-allocator | π Flexible C memory allocation scheme | 
| mulle-thread | π Cross-platform thread/mutex/tss/atomic operations in C | 
Download the latest tar or zip archive and unpack it.
Install mulle-linkedlist into /usr/local with cmake:
PREFIX_DIR="/usr/local"
cmake -B build                               \
      -DMULLE_SDK_PATH="${PREFIX_DIR}"       \
      -DCMAKE_INSTALL_PREFIX="${PREFIX_DIR}" \
      -DCMAKE_PREFIX_PATH="${PREFIX_DIR}"    \
      -DCMAKE_BUILD_TYPE=Release &&
cmake --build build --config Release &&
cmake --install build --config ReleaseNat! for Mulle kybernetiK