Changeset 86176 in vbox for trunk/include/iprt/nt
- Timestamp:
- Sep 19, 2020 3:33:04 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/nt/nt.h
r85898 r86176 607 607 /** Reserved / aligmment padding. */ 608 608 uint32_t Reserved; 609 /** Bitmap where one bit corresponds to a CPU. */ 610 uintptr_t Bitmap[20]; 609 /** Bitmap where one bit corresponds to a CPU. 610 * @note Started at 20 entries. W10 20H2 increased it to 32. Must be 611 * probed by passing a big buffer to KeInitializeAffinityEx and check 612 * the Size afterwards. */ 613 uintptr_t Bitmap[RT_FLEXIBLE_ARRAY_IN_NESTED_UNION]; 611 614 } KAFFINITY_EX; 612 615 typedef KAFFINITY_EX *PKAFFINITY_EX;
Note:
See TracChangeset
for help on using the changeset viewer.