os/kernel/cpu/halt.h

14 lines
142 B
C
Raw Normal View History

2020-07-25 16:54:37 -05:00
/**
* \file
*/
2019-02-09 12:52:45 -06:00
#ifndef HALT_H
#define HALT_H
2020-07-25 16:54:37 -05:00
/**
* Clear interrupts and halt the CPU,
*/
2019-02-09 12:52:45 -06:00
void halt() __attribute__((noreturn));
#endif