PKUOS - Pintos
Pintos source browser for PKU Operating System course
console.h
Go to the documentation of this file.
1#ifndef __LIB_KERNEL_CONSOLE_H
2#define __LIB_KERNEL_CONSOLE_H
3
4void console_init (void);
5void console_panic (void);
6void console_print_stats (void);
7
8#endif /**< lib/kernel/console.h */
void console_print_stats(void)
lib/kernel/console.h
Definition: console.c:81
void console_panic(void)
Notifies the console that a kernel panic is underway, which warns it to avoid trying to take the cons...
Definition: console.c:74
void console_init(void)
Enable console locking.
Definition: console.c:64