Files
ipxe/src/include/gpxe/null_nap.h
T
2008-10-12 23:36:53 +01:00

22 lines
305 B
C

#ifndef _GPXE_NULL_NAP_H
#define _GPXE_NULL_NAP_H
/** @file
*
* Null CPU sleeping
*
*/
#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 /* _GPXE_NULL_NAP_H */