Skip to content

Commit 6218385

Browse files
authored
Merge pull request doxygen#11728 from peterurbanec/fix#11727
Increase maximum number of threads fix doxygen#11727
2 parents 87e3547 + 232a7c1 commit 6218385

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/config.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -881,7 +881,7 @@ Go to the <a href="commands.html">next</a> section or return to the
881881
]]>
882882
</docs>
883883
</option>
884-
<option type='int' id='NUM_PROC_THREADS' defval='1' minval='0' maxval='32'>
884+
<option type='int' id='NUM_PROC_THREADS' defval='1' minval='0' maxval='512'>
885885
<docs>
886886
<![CDATA[
887887
The \c NUM_PROC_THREADS specifies the number of threads Doxygen is allowed to use during
@@ -3828,7 +3828,7 @@ where `loc1` and `loc2` can be relative or absolute paths or URLs.
38283828
]]>
38293829
</docs>
38303830
</option>
3831-
<option type='int' id='DOT_NUM_THREADS' defval='0' minval='0' maxval='32' depends='HAVE_DOT'>
3831+
<option type='int' id='DOT_NUM_THREADS' defval='0' minval='0' maxval='512' depends='HAVE_DOT'>
38323832
<docs>
38333833
<![CDATA[
38343834
The \c DOT_NUM_THREADS specifies the number of \c dot invocations Doxygen is

src/configimpl.l

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2031,9 +2031,9 @@ void Config::checkAndCorrect(bool quiet, const bool check)
20312031
//------------------------
20322032
// clip number of threads
20332033
int dotNumThreads = Config_getInt(DOT_NUM_THREADS);
2034-
if (dotNumThreads>32)
2034+
if (dotNumThreads>512)
20352035
{
2036-
dotNumThreads=32;
2036+
dotNumThreads=512;
20372037
}
20382038
else if (dotNumThreads<=0)
20392039
{

0 commit comments

Comments
 (0)