Package: libatomic-queue-dev (0.0+git20211209.7db4cea-1)
Links for libatomic-queue-dev
Trisquel Resources:
Download Source Package libatomic-queue:
- [libatomic-queue_0.0+git20211209.7db4cea-1.dsc]
- [libatomic-queue_0.0+git20211209.7db4cea.orig.tar.xz]
- [libatomic-queue_0.0+git20211209.7db4cea-1.debian.tar.xz]
Maintainer:
Original Maintainers:
- Debian Med Packaging Team (Mail Archive)
- Steffen Moeller
- Andreas Tille
- Nilesh Patra
External Resources:
- Homepage [github.com]
Similar packages:
devel files for C++ atomic_queue library
C++11 multiple-producer-multiple-consumer lockless queues based on circular buffer with std::atomic. The main design principle these queues follow is simplicity: the bare minimum of atomic operations, fixed size buffer, value semantics.
The circular buffer side-steps the memory reclamation problem inherent in linked-list based queues for the price of fixed buffer size. See Effective memory reclamation for lock-free data structures in C++ for more details.
These qualities are also limitations:
* The maximum queue size must be set at compile time or construction time. * There are no OS-blocking push/pop functions.
Nevertheless, ultra-low-latency applications need just that and nothing more. The simplicity pays off, see the throughput and latency benchmarks.
Available containers are:
* AtomicQueue - a fixed size ring-buffer for atomic elements. * OptimistAtomicQueue - a faster fixed size ring-buffer for atomic elements which busy-waits when empty or full. * AtomicQueue2 - a fixed size ring-buffer for non-atomic elements. * OptimistAtomicQueue2 - a faster fixed size ring-buffer for non-atomic elements which busy-waits when empty or full.
These containers have corresponding AtomicQueueB, OptimistAtomicQueueB, AtomicQueueB2, OptimistAtomicQueueB2 versions where the buffer size is specified as an argument to the constructor.
This package contains the header files and static library.
Other Packages Related to libatomic-queue-dev
|
|
|
-
- dep: libatomic-queue0 (= 0.0+git20211209.7db4cea-1)
- C++ atomic_queue library
-
- dep: libboost-dev
- Boost C++ Libraries development files (default version)
Download libatomic-queue-dev
Architecture | Package Size | Installed Size | Files |
---|---|---|---|
amd64 | 65.5 kB | 363 kB | [list of files] |