Fixed #3115 (note windows limitation to threading in the manual)

This commit is contained in:
Daniel Marjamäki 2011-10-07 19:26:53 +02:00
parent 3b82c26a70
commit 12218e1bff
1 changed files with 8 additions and 3 deletions

View File

@ -8,9 +8,9 @@
]>
<book>
<bookinfo>
<title>Cppcheck 1.50</title>
<title>Cppcheck 1.51</title>
<date>2011-02-06</date>
<date>2011-10-07</date>
</bookinfo>
<chapter>
@ -252,7 +252,12 @@ Checking path/file2.cpp...
<section>
<title>Multithreaded checking</title>
<para>To use 4 threads to check the files in a folder:</para>
<para>The command line client can only use threads in posix
environments. But it is the goal to be able to use threads on all
platforms.</para>
<para>The option -j is used to specify the number of threads you want to use.
For example, to use 4 threads to check the files in a folder:</para>
<programlisting>cppcheck -j 4 path</programlisting>
</section>