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