How to Install and Uninstall libdispatch.x86_64 Package on Rocky Linux 9

Last updated: September 21,2024

1. Install "libdispatch.x86_64" package

Please follow the guidance below to install libdispatch.x86_64 on Rocky Linux 9

$ sudo dnf update $ sudo dnf install libdispatch.x86_64

2. Uninstall "libdispatch.x86_64" package

This is a short guide on how to uninstall libdispatch.x86_64 on Rocky Linux 9:

$ sudo dnf remove libdispatch.x86_64 $ sudo dnf autoremove

3. Information about the libdispatch.x86_64 package on Rocky Linux 9

Last metadata expiration check: 2:32:32 ago on Fri Feb 16 06:49:52 2024.
Available Packages
Name : libdispatch
Epoch : 1
Version : 5.9
Release : 1.el9
Architecture : x86_64
Size : 140 k
Source : libdispatch-5.9-1.el9.src.rpm
Repository : epel
Summary : Apple's Grand Central Dispatch library
URL : https://github.com/apple/swift-corelibs-libdispatch
License : Apache-2.0
Description : Grand Central Dispatch (GCD or libdispatch) provides
: comprehensive support for concurrent code execution on
: multicore hardware.
:
: libdispatch is currently available on all Darwin platforms.
: This project aims to make a modern version of libdispatch
: available on all other Swift platforms. To do this, we will
: implement as much of the portable subset of the API as
: possible, using the existing open source C implementation.
:
: libdispatch on Darwin is a combination of logic in the xnu
: kernel alongside the user-space Library. The kernel has the
: most information available to balance workload across the
: entire system. As a first step, however, we believe it is
: useful to bring up the basic functionality of the library
: using user-space pthread primitives on Linux. Eventually, a
: Linux kernel module could be developed to support more
: informed thread scheduling.