Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/apple/swift-corelibs-libdispatch
The libdispatch Project, (a.k.a. Grand Central Dispatch), for concurrency on multicore hardware
https://github.com/apple/swift-corelibs-libdispatch
Last synced: about 1 month ago
JSON representation
The libdispatch Project, (a.k.a. Grand Central Dispatch), for concurrency on multicore hardware
- Host: GitHub
- URL: https://github.com/apple/swift-corelibs-libdispatch
- Owner: apple
- License: apache-2.0
- Created: 2015-11-09T20:13:55.000Z (about 9 years ago)
- Default Branch: main
- Last Pushed: 2024-09-26T10:18:18.000Z (about 2 months ago)
- Last Synced: 2024-10-02T01:04:49.715Z (about 1 month ago)
- Language: C
- Homepage: swift.org
- Size: 4.62 MB
- Stars: 2,464
- Watchers: 221
- Forks: 459
- Open Issues: 95
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Grand Central Dispatch
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.
## Project Status
A port of libdispatch to Linux has been completed. On Linux, since Swift 3, swift-corelibs-libdispatch has been included in all Swift releases and is used by other swift-corelibs projects.
Opportunities to contribute and on-going work include:
1. Develop a test suite for the Swift APIs of libdispatch.
2. Enhance libdispatch as needed to support Swift language evolution and the needs of the other Core Libraries projects.## Build and Install
For detailed instructions on building and installing libdispatch, see [INSTALL.md](INSTALL.md)
## Testing
For detailed instructions on testing libdispatch, see [TESTING.md](TESTING.md)