Conf - UseProcessors option explained

A bit more detailed example to understand bit masks
This commit is contained in:
BarbzYHOOL
2018-09-05 22:38:22 +02:00
committed by Barbz
parent b68354858f
commit 368f187a42
2 changed files with 16 additions and 8 deletions

View File

@@ -181,8 +181,11 @@ DBLogLevel = 1
#
# UseProcessors
# Description: Processors mask for Windows and Linux based multi-processor systems.
# Example: A computer with 2 CPUs:
# 1 - 1st CPU only, 2 - 2nd CPU only, 3 - 1st and 2nd CPU, because 1 | 2 is 3
# Example: For a computer with 3 CPUs:
# 1 - 1st CPU only
# 2 - 2nd CPU only
# 4 - 3rd CPU only
# 6 - 2nd + 3rd CPUs, because "2 | 4" -> 6
# Default: 0 - (Selected by OS)
# 1+ - (Bit mask value of selected processors)