Changeset 06e1e95 in mainline for kernel/generic/include/console
- Timestamp:
- 2006-09-14T17:09:21Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f1d1f5d3
- Parents:
- e5ecc02
- Location:
- kernel/generic/include/console
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/console/chardev.h
re5ecc02 r06e1e95 27 27 */ 28 28 29 29 /** @addtogroup genericconsole 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef __CHARDEV_H__36 #define __CHARDEV_H__35 #ifndef KERN_CHARDEV_H_ 36 #define KERN_CHARDEV_H_ 37 37 38 38 #include <typedefs.h> … … 72 72 extern void chardev_push_character(chardev_t *chardev, uint8_t ch); 73 73 74 #endif /* __CHARDEV_H__ */74 #endif /* KERN_CHARDEV_H_ */ 75 75 76 76 /** @} 77 77 */ 78 -
kernel/generic/include/console/cmd.h
re5ecc02 r06e1e95 27 27 */ 28 28 29 29 /** @addtogroup genericconsole 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef __CMD_H__36 #define __CMD_H__35 #ifndef KERN_CMD_H_ 36 #define KERN_CMD_H_ 37 37 38 38 #include <typedefs.h> … … 43 43 #endif 44 44 45 45 /** @} 46 46 */ 47 -
kernel/generic/include/console/console.h
re5ecc02 r06e1e95 27 27 */ 28 28 29 29 /** @addtogroup genericconsole 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef __CONSOLE_H__36 #define __CONSOLE_H__35 #ifndef KERN_CONSOLE_H_ 36 #define KERN_CONSOLE_H_ 37 37 38 38 #include <arch/types.h> … … 50 50 extern void arch_release_console(void); 51 51 52 #endif /* __CHARDEV_H__ */52 #endif /* KERN_CONSOLE_H_ */ 53 53 54 54 /** @} 55 55 */ 56 -
kernel/generic/include/console/kconsole.h
re5ecc02 r06e1e95 27 27 */ 28 28 29 29 /** @addtogroup genericconsole 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef __KCONSOLE_H__36 #define __KCONSOLE_H__35 #ifndef KERN_KCONSOLE_H_ 36 #define KERN_KCONSOLE_H_ 37 37 38 38 #include <typedefs.h> … … 81 81 #endif 82 82 83 83 /** @} 84 84 */ 85 -
kernel/generic/include/console/klog.h
re5ecc02 r06e1e95 27 27 */ 28 28 29 29 /** @addtogroup genericklog 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef _KLOG_H_36 #define _KLOG_H_35 #ifndef KERN_KLOG_H_ 36 #define KERN_KLOG_H_ 37 37 38 38 void klog_init(void); … … 41 41 #endif 42 42 43 43 /** @} 44 44 */ 45
Note:
See TracChangeset
for help on using the changeset viewer.