NAME ^

src/global_setup.c - Global setup

DESCRIPTION ^

Performs all the global setting up of things. This includes the (very few) global variables that Parrot totes around.

What are these global variables?

Functions ^

void init_world(Interp *interpreter)

This is the actual initialization code called by Parrot_init().

It sets up the Parrot system, running any platform-specific init code if necessary, then initializing the string subsystem, and setting up the base vtables and core PMCs.

interpreter should be the root interpreter returned by Parrot_new(NULL).

SEE ALSO ^

include/parrot/global_setup.h.


parrot