Changes in kernel/generic/include/console/console.h [f6ab787:a801688b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/console/console.h
rf6ab787 ra801688b 39 39 #include <print.h> 40 40 #include <console/chardev.h> 41 #include <synch/spinlock.h>42 41 43 42 #define PAGING(counter, increment, before, after) \ … … 63 62 extern void console_init(void); 64 63 65 extern void kio_init(void); 66 extern void kio_update(void *); 67 extern void kio_flush(void); 68 extern void kio_push_char(const wchar_t); 69 SPINLOCK_EXTERN(kio_lock); 64 extern void klog_init(void); 65 extern void klog_update(void *); 70 66 71 67 extern wchar_t getc(indev_t *indev); 72 68 extern size_t gets(indev_t *indev, char *buf, size_t buflen); 73 extern sysarg_t sys_k io(int cmd, const void *buf, size_t size);69 extern sysarg_t sys_klog(int cmd, const void *buf, size_t size); 74 70 75 71 extern void grab_console(void); 76 72 extern void release_console(void); 77 73 78 extern sysarg_t sys_debug_ console(void);74 extern sysarg_t sys_debug_activate_console(void); 79 75 80 76 #endif /* KERN_CONSOLE_H_ */
Note:
See TracChangeset
for help on using the changeset viewer.