Ignore:
File:
1 edited

Legend:

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

    r98000fb rb9c7425  
    3636#define KERN_CHARDEV_H_
    3737
     38#include <adt/list.h>
    3839#include <arch/types.h>
    3940#include <synch/waitq.h>
     
    7576} outdev_operations_t;
    7677
    77 /** Character input device. */
     78/** Character output device. */
    7879typedef struct outdev {
    7980        char *name;
     
    8182        /** Protects everything below. */
    8283        SPINLOCK_DECLARE(lock);
     84       
     85        /** Fields suitable for multiplexing. */
     86        link_t link;
     87        link_t list;
    8388       
    8489        /** Implementation of outdev operations. */
Note: See TracChangeset for help on using the changeset viewer.