xref: /xnu-8796.141.3/bsd/machine/machine_private.modulemap (revision 1b191cb58250d0705d8a51287127505aa4bc0789)
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