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