repo.or.cz
/
coreboot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Documentation: Fix sphinx configuration
[coreboot.git]
/
src
/
include
/
halt.h
blob
a00975ba2d734fe701e846a44b9755f499bad261
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#ifndef __HALT_H__
4
#define __HALT_H__
5
6
/**
7
* halt the system reliably
8
*/
9
void
__noreturn
halt
(
void
);
10
11
/* Power off the system. */
12
void
poweroff
(
void
);
13
14
#endif
/* __HALT_H__ */