Changeset b366a6f4 in mainline for kernel/generic/include
- Timestamp:
- 2011-06-24T15:58:01Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7250d2c
- Parents:
- ee2fa30a
- Location:
- kernel/generic/include
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/console/chardev.h
ree2fa30a rb366a6f4 73 73 typedef struct { 74 74 /** Write character to output. */ 75 void (* write)(struct outdev *, wchar_t , bool);75 void (* write)(struct outdev *, wchar_t); 76 76 77 77 /** Redraw any previously cached characters. */ -
kernel/generic/include/console/console.h
ree2fa30a rb366a6f4 72 72 extern void release_console(void); 73 73 74 extern sysarg_t sys_debug_enable_console(void); 75 extern sysarg_t sys_debug_disable_console(void); 74 extern sysarg_t sys_debug_activate_console(void); 76 75 77 76 #endif /* KERN_CONSOLE_H_ */ -
kernel/generic/include/ddi/ddi.h
ree2fa30a rb366a6f4 48 48 pfn_t frames; /**< Number of frames in the area. */ 49 49 bool unpriv; /**< Allow mapping by unprivileged tasks. */ 50 bool mapped; /**< Indicate whether the area is actually 51 mapped. */ 50 52 } parea_t; 51 53 -
kernel/generic/include/panic.h
ree2fa30a rb366a6f4 60 60 struct istate; 61 61 62 extern bool silent;62 extern bool console_override; 63 63 64 64 extern void panic_common(panic_category_t, struct istate *, int, -
kernel/generic/include/syscall/syscall.h
ree2fa30a rb366a6f4 94 94 SYS_SYSINFO_GET_DATA, 95 95 96 SYS_DEBUG_ENABLE_CONSOLE, 97 SYS_DEBUG_DISABLE_CONSOLE, 96 SYS_DEBUG_ACTIVATE_CONSOLE, 98 97 99 98 SYSCALL_END
Note:
See TracChangeset
for help on using the changeset viewer.