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