mirror of
https://github.com/xcat2/xNBA.git
synced 2026-03-26 00:03:28 +00:00
Access to the gpxe.org and etherboot.org domains and associated resources has been revoked by the registrant of the domain. Work around this problem by renaming project from gPXE to iPXE, and updating URLs to match. Also update README, LOG and COPYRIGHTS to remove obsolete information. Signed-off-by: Michael Brown <mcb30@ipxe.org>
24 lines
338 B
C
24 lines
338 B
C
#ifndef _IPXE_NULL_NAP_H
|
|
#define _IPXE_NULL_NAP_H
|
|
|
|
/** @file
|
|
*
|
|
* Null CPU sleeping
|
|
*
|
|
*/
|
|
|
|
FILE_LICENCE ( GPL2_OR_LATER );
|
|
|
|
#ifdef NAP_NULL
|
|
#define NAP_PREFIX_null
|
|
#else
|
|
#define NAP_PREFIX_null __null_
|
|
#endif
|
|
|
|
static inline __always_inline void
|
|
NAP_INLINE ( null, cpu_nap ) ( void ) {
|
|
/* Do nothing */
|
|
}
|
|
|
|
#endif /* _IPXE_NULL_NAP_H */
|