The _einit_ routine inserts an EINIT instruction into the
program. This instruction signals the CPU that the initialization
sequence is finished. This routine is implemented as an intrinsic
function. The code required is included inline rather than being
called.
Return Value
None.
Example
#include <intrins.h>
int i;
void tst_einit (void) {
i = 1;
_einit_(); /* signal end of initialization */
i = 0;
}
Arm’s Privacy Policy has been updated. By continuing to use our site, you consent to Arm’s Privacy Policy. Please review our Privacy Policy to learn more about our collection, use and transfers of your data.