MCPcopy Create free account
hub / github.com/HelenOS/helenos / kconsole_init

Function kconsole_init

kernel/generic/src/console/kconsole.c:97–104  ·  view source on GitHub ↗

Initialize kconsole data structures * * This is the most basic initialization, almost no * other kernel subsystem is ready yet. * */

Source from the content-addressed store, hash-verified

95 *
96 */
97void kconsole_init(void)
98{
99 unsigned int i;
100
101 cmd_init();
102 for (i = 0; i < KCONSOLE_HISTORY; i++)
103 history[i][0] = 0;
104}
105
106/** Register kconsole command.
107 *

Callers 1

main_bsp_separated_stackFunction · 0.85

Calls 1

cmd_initFunction · 0.85

Tested by

no test coverage detected