xref: /xnu-11417.140.69/tests/cs_helpers.h (revision 43a90889846e00bfb5cf1d255cdc0a701a1e05a4)
1*43a90889SApple OSS Distributions /*
2*43a90889SApple OSS Distributions  * Demotes the current task to a non-platform binary for testing purposes
3*43a90889SApple OSS Distributions  *
4*43a90889SApple OSS Distributions  * NOTE: platform-ness is tracked in many different places, and this API only
5*43a90889SApple OSS Distributions  * affects particular bits in the kernel - double check that it does what you want before using
6*43a90889SApple OSS Distributions  *
7*43a90889SApple OSS Distributions  * Returns: 0 on success, nonzero on failure
8*43a90889SApple OSS Distributions  */
9*43a90889SApple OSS Distributions extern int
10*43a90889SApple OSS Distributions remove_platform_binary(void);
11