/* *Parsea--section=foocommandlineargument. * *Setorupdatethebitmaskin*dumpSectionsaccordingtoarg. *dumpSectionsisinitialisedasDUMP_UNSECTIONEDbypg_dumpand *pg_restoresotheycanknowifthishasevenbeencalled.
*/ void
set_dump_section(constchar *arg, int *dumpSections)
{ /* if this is the first call, clear all the bits */ if (*dumpSections == DUMP_UNSECTIONED)
*dumpSections = 0;
/* Register a callback to be run when exit_nicely is invoked. */ void
on_exit_nicely(on_exit_nicely_callback function, void *arg)
{ if (on_exit_nicely_index >= MAX_ON_EXIT_NICELY)
pg_fatal("out of on_exit_nicely slots");
on_exit_nicely_list[on_exit_nicely_index].function = function;
on_exit_nicely_list[on_exit_nicely_index].arg = arg;
on_exit_nicely_index++;
}
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.