diff options
Diffstat (limited to 'bitbake/doc')
-rw-r--r-- | bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml index b4fc64e753..bc08c814d1 100644 --- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml +++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml | |||
@@ -1929,6 +1929,38 @@ | |||
1929 | not careful. | 1929 | not careful. |
1930 | </note> | 1930 | </note> |
1931 | </para></listitem> | 1931 | </para></listitem> |
1932 | <listitem><para><emphasis><filename>[number_threads]</filename>:</emphasis> | ||
1933 | Limits tasks to a specific number of simultaneous threads | ||
1934 | during execution. | ||
1935 | This varflag is useful when your build host has a large number | ||
1936 | of cores but certain tasks need to be rate-limited due to various | ||
1937 | kinds of resource constraints (e.g. to avoid network throttling). | ||
1938 | <filename>number_threads</filename> works similarly to the | ||
1939 | <link linkend='var-BB_NUMBER_THREADS'><filename>BB_NUMBER_THREADS</filename></link> | ||
1940 | variable but is task-specific.</para> | ||
1941 | |||
1942 | <para>Set the value globally. | ||
1943 | For example, the following makes sure the | ||
1944 | <filename>do_fetch</filename> task uses no more than two | ||
1945 | simultaneous execution threads: | ||
1946 | <literallayout class='monospaced'> | ||
1947 | do_fetch[number_threads] = "2" | ||
1948 | </literallayout> | ||
1949 | <note><title>Warnings</title> | ||
1950 | <itemizedlist> | ||
1951 | <listitem><para> | ||
1952 | Setting the varflag in individual recipes rather | ||
1953 | than globally can result in unpredictable behavior. | ||
1954 | </para></listitem> | ||
1955 | <listitem><para> | ||
1956 | Setting the varflag to a value greater than the | ||
1957 | value used in the <filename>BB_NUMBER_THREADS</filename> | ||
1958 | variable causes <filename>number_threads</filename> | ||
1959 | to have no effect. | ||
1960 | </para></listitem> | ||
1961 | </itemizedlist> | ||
1962 | </note> | ||
1963 | </para></listitem> | ||
1932 | <listitem><para><emphasis><filename>[postfuncs]</filename>:</emphasis> | 1964 | <listitem><para><emphasis><filename>[postfuncs]</filename>:</emphasis> |
1933 | List of functions to call after the completion of the task. | 1965 | List of functions to call after the completion of the task. |
1934 | </para></listitem> | 1966 | </para></listitem> |