summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/MANUAL.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/MANUAL.txt b/doc/MANUAL.txt
index 16bbe80..cb76c66 100644
--- a/doc/MANUAL.txt
+++ b/doc/MANUAL.txt
@@ -165,10 +165,10 @@ Python module to store the duration of each test. On some platforms (to date
only OSX) there is no bulk-update API and performance may be impacted if you
have many (10's of thousands) of tests.
-On Linux, testrepository will inspect /proc/cpuinfo to determine how many CPUs
-are present in the machine, and run one worker per CPU. On other operating
-systems, or if you need to control the number of workers that are used, the
---concurrency option will let you do so::
+To determine how many CPUs are present in the machine, testrepository will
+use the multiprocessing Python module (present since 2.6). On operating systems
+where this is not implemented, or if you need to control the number of workers
+that are used, the --concurrency option will let you do so::
$ testr run --parallel --concurrency=2