How to Install and Uninstall libatomic-queue-dev Package on Ubuntu 21.10 (Impish Indri)

Last updated: May 12,2024

1. Install "libatomic-queue-dev" package

Here is a brief guide to show you how to install libatomic-queue-dev on Ubuntu 21.10 (Impish Indri)

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

2. Uninstall "libatomic-queue-dev" package

Please follow the guidelines below to uninstall libatomic-queue-dev on Ubuntu 21.10 (Impish Indri):

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

3. Information about the libatomic-queue-dev package on Ubuntu 21.10 (Impish Indri)

Package: libatomic-queue-dev
Architecture: amd64
Version: 0.0+git20201108.d9d66b6-2ubuntu1
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: 77
Depends: libatomic-queue0 (= 0.0+git20201108.d9d66b6-2ubuntu1), libboost-dev
Filename: pool/universe/liba/libatomic-queue/libatomic-queue-dev_0.0+git20201108.d9d66b6-2ubuntu1_amd64.deb
Size: 11152
MD5sum: f34adf47e0c8831566cf2dbd4428c90f
SHA1: ead4f81ee564034c25ab8f275be9564049ad3839
SHA256: 097f8d525a05ba279012d71556312add48103d642fc4117060613a44f50789ad
SHA512: ba1241139b644783c0e63d03ee2404429d29f8de9229251174256edd7994838e8a248d0a940b8104b79183c438a4ddc0d71884eb1cb0722fd83bf8bbfecb8af4
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