xref: /xnu-12377.41.6/osfmk/kern/kcdata.modulemap (revision bbb1b6f9e71b8cdde6e5cd6f4841f207dee3d828)
1*bbb1b6f9SApple OSS Distributions#ifdef XNU_KERNEL_PRIVATE
2*bbb1b6f9SApple OSS Distributions// kern/kcdata.h gets its own top level module outside of the Darwin module
3*bbb1b6f9SApple OSS Distributions// to support building libkdd (one of our alias projects). libkdd can’t use
4*bbb1b6f9SApple OSS Distributions// <kern/kcdata.h> because it doesn’t produce that header itself, and so Xcode
5*bbb1b6f9SApple OSS Distributions// would pick up the old one in the SDK rather than mapping to the new one in
6*bbb1b6f9SApple OSS Distributions// SRCROOT. To get around that, libkdd uses <kcdata.h> to not match anything in
7*bbb1b6f9SApple OSS Distributions// the SDK and fall back on the one in SRCROOT. So far so good, but libkdd needs
8*bbb1b6f9SApple OSS Distributions// to avoid accidentally also picking up <kern/kcdata.h> via a module, or it
9*bbb1b6f9SApple OSS Distributions// will run into all kinds of redeclaration sadness that the include guards
10*bbb1b6f9SApple OSS Distributions// somehow don’t block. (Maybe because <kcdata.h> isn’t modular and
11*bbb1b6f9SApple OSS Distributions// <kern/kcdata.h> is?) libkdd uses the Darwin module, and so <kern/kcdata.h>
12*bbb1b6f9SApple OSS Distributions// needs its own top level module that sits on top of Darwin.
13*bbb1b6f9SApple OSS Distributions#endif
14*bbb1b6f9SApple OSS Distributionsmodule kcdata [system] {
15*bbb1b6f9SApple OSS Distributions  header "kern/kcdata.h"
16*bbb1b6f9SApple OSS Distributions  export *
17*bbb1b6f9SApple OSS Distributions}
18