// acpitabl.h
typedef union _PROC_TOPOLOGY_CACHE_ATTRIBUTES {
struct {
UCHAR ReadAllocate : 1;
UCHAR WriteAllocate : 1;
UCHAR CacheType : 2;
UCHAR WritePolicy : 1;
UCHAR Reserved : 3;
};
UCHAR AsUCHAR;
} PROC_TOPOLOGY_CACHE_ATTRIBUTES, *PPROC_TOPOLOGY_CACHE_ATTRIBUTES;
View the official Windows Driver Kit DDI referenceNo description available.
Defines the processor topology cache attributes structure.
ReadAllocateWriteAllocateCacheTypeWritePolicyReservedReserved for future use.
AsUCHAR