summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@crashcourse.ca>2021-09-06 10:00:14 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-09-18 13:03:45 +0100
commit2e09b9d8a3a4795000096bbe869f8365cb5d8f6e (patch)
tree28243bdcfbf2d2489834b0b2cf0660f7ce75a4d9 /documentation
parenta98e336d7d0dd1b0f39976904b6b89cd3b0fa4f9 (diff)
downloadpoky-2e09b9d8a3a4795000096bbe869f8365cb5d8f6e.tar.gz
ref-manual: add potential of parallelism to defn of "Task"
(From yocto-docs rev: 2e80de272b987c70374a1758e71c5c1371054d1f) Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Reviewed-by: Quentin Schulz <foss@0leil.ṅet> Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/ref-manual/terms.rst8
1 files changed, 7 insertions, 1 deletions
diff --git a/documentation/ref-manual/terms.rst b/documentation/ref-manual/terms.rst
index 32658051a5..e5a7565df5 100644
--- a/documentation/ref-manual/terms.rst
+++ b/documentation/ref-manual/terms.rst
@@ -367,10 +367,16 @@ universal, the list includes them just in case:
367 section in the Yocto Project Overview and Concepts Manual. 367 section in the Yocto Project Overview and Concepts Manual.
368 368
369 :term:`Task` 369 :term:`Task`
370 A unit of execution for BitBake (e.g. 370 A per-recipe unit of execution for BitBake (e.g.
371 :ref:`ref-tasks-compile`, 371 :ref:`ref-tasks-compile`,
372 :ref:`ref-tasks-fetch`, 372 :ref:`ref-tasks-fetch`,
373 :ref:`ref-tasks-patch`, and so forth). 373 :ref:`ref-tasks-patch`, and so forth).
374 One of the major benefits of the build system is that, since each
375 recipe will typically spawn the execution of numerous tasks,
376 it is entirely possible that many tasks can execute in parallel,
377 either tasks from separate recipes or independent tasks within
378 the same recipe, potentially up to the parallelism of your
379 build system.
374 380
375 :term:`Toaster` 381 :term:`Toaster`
376 A web interface to the Yocto Project's :term:`OpenEmbedded Build System`. 382 A web interface to the Yocto Project's :term:`OpenEmbedded Build System`.