/* * Don't register by default -- as this registers very early in the * boot process it becomes the default console. * * Initialized at init time.
*/ staticint use_stderr_console = 0;
/* The previous behavior of not unregistering led to /dev/console being * impossible to open. My FC5 filesystem started having init die, and the * system panicing because of this. Unregistering causes the real * console to become the default console, and /dev/console can then be * opened. Making this an initcall makes this happen late enough that * there is no added value in dumping everything to stderr, and the * normal console is good enough to show you all available output.
*/ staticint __init unregister_stderr(void)
{
unregister_console(&stderr_console);
return 0;
}
__initcall(unregister_stderr);
Messung V0.5
¤ Dauer der Verarbeitung: 0.12 Sekunden
(vorverarbeitet)
¤
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.