diff options
Diffstat (limited to 'src/include/halt.h')
-rw-r--r-- | src/include/halt.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/include/halt.h b/src/include/halt.h index a00975ba2d..cb691a202b 100644 --- a/src/include/halt.h +++ b/src/include/halt.h @@ -3,10 +3,13 @@ #ifndef __HALT_H__ #define __HALT_H__ -/** - * halt the system reliably - */ -void __noreturn halt(void); +#include <arch/hlt.h> +#include <commonlib/bsd/stdlib.h> + +static inline __noreturn void halt(void) +{ + abort(); +} /* Power off the system. */ void poweroff(void); |