Sign in
gem5
/
arm
/
linux-arm64-legacy
/
3038edabf48f01421c621cb77a712b446d3a5d67
/
.
/
include
/
asm-x86
/
bigsmp
/
apicdef.h
blob: 392c3f5ef2fe0ad4d3e48e485390f4cb62a7bf83 [
file
] [
log
] [
blame
]
#ifndef
__ASM_MACH_APICDEF_H
#define
__ASM_MACH_APICDEF_H
#define
APIC_ID_MASK
(
0xFF
<<
24
)
static
inline
unsigned
get_apic_id
(
unsigned
long
x
)
{
return
(((
x
)>>
24
)&
0xFF
);
}
#define
GET_APIC_ID
(
x
)
get_apic_id
(
x
)
#endif