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

Last updated: May 17,2024

1. Install "libatomic-queue0" package

Learn how to install libatomic-queue0 on Ubuntu 21.04 (Hirsute Hippo)

$ sudo apt update $ sudo apt install libatomic-queue0

2. Uninstall "libatomic-queue0" package

This tutorial shows how to uninstall libatomic-queue0 on Ubuntu 21.04 (Hirsute Hippo):

$ sudo apt remove libatomic-queue0 $ sudo apt autoclean && sudo apt autoremove

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

Package: libatomic-queue0
Architecture: amd64
Version: 0.0+git20201108.d9d66b6-1
Priority: optional
Section: universe/libs
Source: libatomic-queue
Origin: Ubuntu
Maintainer: Ubuntu Developers
Original-Maintainer: Debian Med Packaging Team
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Installed-Size: 220
Depends: libc6 (>= 2.32), libgcc-s1 (>= 3.0), libstdc++6 (>= 5.2)
Filename: pool/universe/liba/libatomic-queue/libatomic-queue0_0.0+git20201108.d9d66b6-1_amd64.deb
Size: 55860
MD5sum: 17b510a69126c499408485b3f75942a2
SHA1: efe6a8ad40c166b2dc16721592a7fc2ffe4ae2b7
SHA256: 8b341d98876d8d6919be01dad37316b9d4a6795b3e219d227eedbf15b73a45fd
SHA512: afaa4378505814fafcbc2b4185a946ddc3c4bcec5aea13c326ecbcae27a051006f83f44e5e90ff77cd5a4e7425f63f4161356c89144b49a44a6a1aada90f37a6
Homepage: https://github.com/max0x7ba/atomic_queue
Description-en: 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 dynamic library.
Description-md5: 8010ede9e291a894c26bb927cfedb6fb