内核IDLE进程
static inline void waitForInterrupt() {
asm volatile("hlt");
}
...
while(1) {
waitForInterrupt();
}Last updated
static inline void waitForInterrupt() {
asm volatile("hlt");
}
...
while(1) {
waitForInterrupt();
}Last updated