00001 #ifndef _GPXE_NULL_NAP_H 00002 #define _GPXE_NULL_NAP_H 00003 00004 /** @file 00005 * 00006 * Null CPU sleeping 00007 * 00008 */ 00009 00010 FILE_LICENCE ( GPL2_OR_LATER ); 00011 00012 #ifdef NAP_NULL 00013 #define NAP_PREFIX_null 00014 #else 00015 #define NAP_PREFIX_null __null_ 00016 #endif 00017 00018 static inline __always_inline void 00019 NAP_INLINE ( null, cpu_nap ) ( void ) { 00020 /* Do nothing */ 00021 } 00022 00023 #endif /* _GPXE_NULL_NAP_H */
1.5.7.1