Changeset 41d33ac in mainline for arch/ia32/src/ia32.c
- Timestamp:
- 2006-05-31T22:18:40Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e7ed9868
- Parents:
- 018f95a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/src/ia32.c
r018f95a r41d33ac 55 55 #include <proc/thread.h> 56 56 #include <syscall/syscall.h> 57 #include <console/console.h> 57 58 58 59 void arch_pre_mm_init(void) … … 133 134 return 0; 134 135 } 136 137 /** Acquire console back for kernel 138 * 139 */ 140 void arch_grab_console(void) 141 { 142 i8042_grab(); 143 } 144 /** Return console to userspace 145 * 146 */ 147 void arch_release_console(void) 148 { 149 i8042_release(); 150 }
Note:
See TracChangeset
for help on using the changeset viewer.