Changeset 1787e527 in mainline for kernel/generic/include/console/chardev.h
- Timestamp:
- 2009-11-16T21:22:54Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5ebdf94
- Parents:
- fcbd1be (diff), 9c70ed6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
kernel/generic/include/console/chardev.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/console/chardev.h
rfcbd1be r1787e527 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.
