Changeset b9c7425 in mainline for kernel/generic/include/console
- Timestamp:
- 2009-08-20T20:03:41Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bc7d44c
- Parents:
- e731b0d
- Location:
- kernel/generic/include/console
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/console/chardev.h
re731b0d rb9c7425 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> … … 75 76 } outdev_operations_t; 76 77 77 /** Character input device. */78 /** Character output device. */ 78 79 typedef struct outdev { 79 80 char *name; … … 81 82 /** Protects everything below. */ 82 83 SPINLOCK_DECLARE(lock); 84 85 /** Fields suitable for multiplexing. */ 86 link_t link; 87 link_t list; 83 88 84 89 /** Implementation of outdev operations. */ -
kernel/generic/include/console/console.h
re731b0d rb9c7425 44 44 45 45 extern indev_t *stdin_wire(void); 46 extern void stdout_wire(outdev_t *outdev); 46 47 extern void console_init(void); 47 48
Note:
See TracChangeset
for help on using the changeset viewer.