Processor Control Region

From Wikipedia, the free encyclopedia

This is the current revision of this page, as edited by GregorB (talk | contribs) at 12:38, 4 February 2020 (Per WP:ORDER). The present address (URL) is a permanent link to this version.

(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

Processor Control Region (PCR) is a Windows kernel mode data structure that contains information about the current processor. It can be accessed via the fs segment register on x86 versions, or the gs segment register on x64 versions respectively.

Structure[edit]

In Windows, the PCR is known as KPCR. It contains information about the current processor.

Processor Control Block[edit]

The PCR contains a substructure called Processor Control Block (KPRCB), which contains information such as CPU step and a pointer to the thread object of the current thread.

See also[edit]

References[edit]