|
| _einit_| Summary | |
#include <intrins.h>
void _einit_ (void);
| | Description | | 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;
}
|
|
|