PcapPlusPlus
22.11
|
#include <SystemUtils.h>
Public Member Functions | |
bool | operator== (const SystemCore &other) const |
Public Attributes | |
uint32_t | Mask |
uint8_t | Id |
Represents data of 1 CPU core. Current implementation supports up to 32 cores
|
inline |
Overload of the comparison operator
uint8_t pcpp::SystemCore::Id |
Core ID - a value between 0 and 31
uint32_t pcpp::SystemCore::Mask |
Core position in a 32-bit mask. For each core this attribute holds a 4B integer where only 1 bit is set, according to the core ID. For example: in core #0 the right-most bit will be set (meaning the number 0x01); in core #5 the 5th right-most bit will be set (meaning the number 0x20)...