Changeset 41d33ac in mainline for arch/amd64/src/amd64.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/amd64/src/amd64.c
r018f95a r41d33ac 51 51 #include <arch/debugger.h> 52 52 #include <syscall/syscall.h> 53 #include <console/console.h> 53 54 54 55 … … 186 187 return 0; 187 188 } 189 190 /** Acquire console back for kernel 191 * 192 */ 193 void arch_grab_console(void) 194 { 195 i8042_grab(); 196 } 197 /** Return console to userspace 198 * 199 */ 200 void arch_release_console(void) 201 { 202 i8042_release(); 203 }
Note:
See TracChangeset
for help on using the changeset viewer.