| 44 | | /** |
|---|
| 45 | | * Gets the number of logical (not physical) processors in the system. |
|---|
| 46 | | * |
|---|
| 47 | | * @returns Number of logical processors in the system. |
|---|
| 48 | | * |
|---|
| 49 | | * @todo Replaced by RTMpGetOnlineCount / RTMpGetCount, retire this guy. |
|---|
| 50 | | */ |
|---|
| 51 | | RTDECL(unsigned) RTSystemProcessorGetCount(void); |
|---|
| 52 | | |
|---|
| 53 | | /** |
|---|
| 54 | | * Gets the active logical processor mask. |
|---|
| 55 | | * |
|---|
| 56 | | * @returns Active logical processor mask. (bit 0 == logical cpu 0) |
|---|
| 57 | | * |
|---|
| 58 | | * @todo Replaced by RTMpGetOnlineSet, retire this guy. |
|---|
| 59 | | */ |
|---|
| 60 | | RTDECL(uint64_t) RTSystemProcessorGetActiveMask(void); |
|---|
| 61 | | |
|---|