Created
April 24, 2025 07:34
-
-
Save foamdino/d94d1dccd733b529c002ed0d909c3c1c to your computer and use it in GitHub Desktop.
coremap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** CPU core bitmap. */ | |
| struct bl_pal_coremap | |
| { | |
| /* The coremap bitmap itself is an array of 64-bit integers of sufficient size | |
| * to store up to BL_PAL_MAX_CORES of cores (be that physical or logical cores). | |
| */ | |
| __BL_BITMAP_DECLARE(bits, BL_PAL_MAX_CORES); | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment