How to Install and Uninstall libatomic-queue-dev Package on Ubuntu 21.04 (Hirsute Hippo)

Last updated: May 14,2024

1. Install "libatomic-queue-dev" package

Please follow the guidance below to install libatomic-queue-dev on Ubuntu 21.04 (Hirsute Hippo)

$ sudo apt update $ sudo apt install libatomic-queue-dev

2. Uninstall "libatomic-queue-dev" package

Here is a brief guide to show you how to uninstall libatomic-queue-dev on Ubuntu 21.04 (Hirsute Hippo):

$ sudo apt remove libatomic-queue-dev $ sudo apt autoclean && sudo apt autoremove

3. Information about the libatomic-queue-dev package on Ubuntu 21.04 (Hirsute Hippo)

Package: libatomic-queue-dev
Architecture: amd64
Version: 0.0+git20201108.d9d66b6-1
Priority: optional
Section: universe/libdevel
Source: libatomic-queue
Origin: Ubuntu
Maintainer: Ubuntu Developers
Original-Maintainer: Debian Med Packaging Team
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Installed-Size: 78
Depends: libatomic-queue0 (= 0.0+git20201108.d9d66b6-1)
Filename: pool/universe/liba/libatomic-queue/libatomic-queue-dev_0.0+git20201108.d9d66b6-1_amd64.deb
Size: 11156
MD5sum: 90c9f9ee701ae239374d90afbeaa6127
SHA1: 222f7be34bb80072a34dbf215ba255d7caf5009a
SHA256: 335662a1c01a17c7c5e3a2859e5211e5dc407c9ba5b6431932a8905621ac2bd7
SHA512: df55c6b42feaadd132b776803598929b492bb11b24ec1d097c2117400275d0f7e82f50e0c8e5d8e7d054fa7edfa997738135fc5c1e66d723eca926e4a90758b2
Homepage: https://github.com/max0x7ba/atomic_queue
Description-en: 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.
Description-md5: d5ffb4146117105d33c4e8830b6c8fda