mirror of
https://github.com/xcat2/xNBA.git
synced 2026-03-25 15:53:29 +00:00
Signed-off-by: Piotr Jaroszyński <p.jaroszynski@gmail.com> Signed-off-by: Michael Brown <mcb30@ipxe.org>
19 lines
247 B
C
19 lines
247 B
C
#ifndef _IPXE_LINUX_NAP_H
|
|
#define _IPXE_LINUX_NAP_H
|
|
|
|
/** @file
|
|
*
|
|
* Linux CPU sleeping
|
|
*
|
|
*/
|
|
|
|
FILE_LICENCE(GPL2_OR_LATER);
|
|
|
|
#ifdef NAP_LINUX
|
|
#define NAP_PREFIX_linux
|
|
#else
|
|
#define NAP_PREFIX_linux __linux_
|
|
#endif
|
|
|
|
#endif /* _IPXE_LINUX_NAP_H */
|