Sign in
android
/
device
/
google
/
contexthub
/
48ca0ca8e5fceeddad06fcde46ebcb135445ced7
/
.
/
firmware
/
src
/
cpu
/
x86
/
cpu.c
blob: b91269652f6a8002f2e48ae48c8babf8e827d268 [
file
] [
log
] [
blame
]
#include
<inc/cpu.h>
void
cpuInit
(
void
)
{
/* nothing to do for x86 */
}
uint64_t
cpuIntsOff
(
void
)
{
/* no such luck */
return
0
;
}
uint64_t
cpuIntsOn
(
void
)
{
/* no such luck */
return
0
;
}
void
cpuIntsRestore
(
uint64_t
state
)
{
/* no such luck */
}