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