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