- Timestamp:
- 2005-12-10T16:07:08Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f7f6f25
- Parents:
- 91c78c9
- Location:
- generic
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/include/console/chardev.h
r91c78c9 radb2ebf8 37 37 #define CHARDEV_BUFLEN 512 38 38 39 struct chardev;40 41 39 /* Character device operations interface. */ 42 40 struct chardev_operations { 43 void (* suspend)(struct chardev *);/**< Suspend pushing characters. */ 44 void (* resume)(struct chardev *); /**< Resume pushing characters. */ 45 /** Write character to stream */ 46 void (* write)(struct chardev *, char c); 41 void (* suspend)(chardev_t *); /**< Suspend pushing characters. */ 42 void (* resume)(chardev_t *); /**< Resume pushing characters. */ 43 void (* write)(chardev_t *, char c); /**< Write character to stream. */ 47 44 }; 48 45 -
generic/include/interrupt.h
r91c78c9 radb2ebf8 33 33 34 34 #ifndef IVT_ITEMS 35 # define IVT_ITEMS 135 # define IVT_ITEMS 0 36 36 #endif 37 37 -
generic/src/interrupt/interrupt.c
r91c78c9 radb2ebf8 113 113 static cmd_info_t exc_info = { 114 114 .name = "pexc", 115 .description = "Print exception table ",115 .description = "Print exception table.", 116 116 .func = exc_print_cmd, 117 117 .help = NULL,
Note:
See TracChangeset
for help on using the changeset viewer.