System.Diagnostics.ProcessThread.ProcessorAffinity Property

Sets the processors on which the associated thread can run.

Syntax

[System.ComponentModel.Browsable(false)]
[System.MonoTODO]
public IntPtr ProcessorAffinity { set; }

Value

Documentation for this section has not yet been entered.

Remarks

The processor affinity of a thread is the set of processors it has a relationship to. In other words, those it can be scheduled to run on.

ProcessThread.ProcessorAffinity represents each processor as a bit. Bit 0 represents processor one, bit 1 represents processor two, and so on. The following table shows a subset of the possible ProcessThread.ProcessorAffinity for a four-processor system.

0x0001

1

0x0002

2

0x0003

1 or 2

0x0004

3

0x0005

1 or 3

0x0007

1, 2, or 3

0x000F

1, 2, 3, or 4

You can also specify the single, preferred processor for a thread by setting the ProcessThread.IdealProcessor property. A process thread can migrate from processor to processor, with each migration reloading the processor cache. Specifying a processor for a thread can improve performance under heavy system loads by reducing the number of times the processor cache is reloaded.

Requirements

Namespace: System.Diagnostics
Assembly: System (in System.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0