Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/console/chardev.h

    ra71c158 r98000fb  
    3636#define KERN_CHARDEV_H_
    3737
    38 #include <adt/list.h>
    3938#include <arch/types.h>
    4039#include <synch/waitq.h>
     
    7473        /** Write character to output. */
    7574        void (* write)(struct outdev *, wchar_t, bool);
    76        
    77         /** Redraw any previously cached characters. */
    78         void (* redraw)(struct outdev *);
    7975} outdev_operations_t;
    8076
    81 /** Character output device. */
     77/** Character input device. */
    8278typedef struct outdev {
    8379        char *name;
     
    8581        /** Protects everything below. */
    8682        SPINLOCK_DECLARE(lock);
    87        
    88         /** Fields suitable for multiplexing. */
    89         link_t link;
    90         link_t list;
    9183       
    9284        /** Implementation of outdev operations. */
Note: See TracChangeset for help on using the changeset viewer.