david/ipxe
Archived
1
0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/include/gpxe/null_nap.h

22 lines
305 B
C
Raw Normal View History

2008-10-13 00:34:45 +02:00
#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 */