// init_globals replaces C++ global objects so we can use the standard linker // to link Delta (which is at least twice as fast as using the GNU C++ linker). // Also, init.c gives explicit control over the sequence of initialization.
// Programming convention: instead of using a global object (e,g, "Foo foo;"), // use "Foo* foo;", create a function init_foo() in foo.c, and add a call // to init_foo in init.cpp.
jint init_globals(); // call constructors at startup (main Java thread) void vm_init_globals(); // call constructors at startup (VM thread) void exit_globals(); // call destructors before exit
bool is_init_completed(); // returns true when bootstrapping has completed void wait_init_completed(); // wait until set_init_completed() has been called void set_init_completed(); // set basic init to completed
#endif// SHARE_RUNTIME_INIT_HPP
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.16 Sekunden
(vorverarbeitet am 2026-09-09)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.