ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
32 lines
685 B
ReStructuredText
32 lines
685 B
ReStructuredText
.. _concurrency:
|
|
|
|
********************
|
|
Concurrent Execution
|
|
********************
|
|
|
|
The modules described in this chapter provide support for concurrent
|
|
execution of code. The appropriate choice of tool will depend on the
|
|
task to be executed (CPU bound vs IO bound) and preferred style of
|
|
development (event driven cooperative multitasking vs preemptive
|
|
multitasking). Here's an overview:
|
|
|
|
|
|
.. toctree::
|
|
|
|
threading.rst
|
|
multiprocessing.rst
|
|
multiprocessing.shared_memory.rst
|
|
concurrent.rst
|
|
concurrent.futures.rst
|
|
subprocess.rst
|
|
sched.rst
|
|
queue.rst
|
|
contextvars.rst
|
|
|
|
|
|
The following are support modules for some of the above services:
|
|
|
|
.. toctree::
|
|
|
|
_thread.rst
|