Changes in kernel/generic/include/console/chardev.h [98000fb:a71c158] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/console/chardev.h
r98000fb ra71c158 36 36 #define KERN_CHARDEV_H_ 37 37 38 #include <adt/list.h> 38 39 #include <arch/types.h> 39 40 #include <synch/waitq.h> … … 73 74 /** Write character to output. */ 74 75 void (* write)(struct outdev *, wchar_t, bool); 76 77 /** Redraw any previously cached characters. */ 78 void (* redraw)(struct outdev *); 75 79 } outdev_operations_t; 76 80 77 /** Character input device. */81 /** Character output device. */ 78 82 typedef struct outdev { 79 83 char *name; … … 81 85 /** Protects everything below. */ 82 86 SPINLOCK_DECLARE(lock); 87 88 /** Fields suitable for multiplexing. */ 89 link_t link; 90 link_t list; 83 91 84 92 /** Implementation of outdev operations. */
Note:
See TracChangeset
for help on using the changeset viewer.