1module DarwinPrivate.machine [system] { 2 #ifndef XNU_PLATFORM_MacOSX 3 module _limits { 4 header "machine/_limits.h" 5 export * 6 } 7 8 #endif 9 module cpu_capabilities { 10 header "machine/cpu_capabilities.h" 11 #if defined(XNU_PLATFORM_MacOSX) || defined(XNU_PLATFORM_iPhoneSimulator) || defined(XNU_PLATFORM_AppleTVSimulator) || defined(XNU_PLATFORM_WatchSimulator) 12 header "i386/cpu_capabilities.h" 13 #endif 14 header "arm/cpu_capabilities.h" 15 16 export * 17 } 18} 19