Changeset da0c91e7 in mainline for console/console.c
- Timestamp:
- 2006-06-01T23:01:44Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 46bd593f
- Parents:
- c1d2c9d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
console/console.c
rc1d2c9d rda0c91e7 116 116 117 117 conn = &connections[active_console]; 118 if ((c >= KBD_KEY_F1) && (c < KBD_KEY_F1 + CONSOLE_COUNT)) { 118 // if ((c >= KBD_KEY_F1) && (c < KBD_KEY_F1 + CONSOLE_COUNT)) { 119 if ((c >= '1') && (c < '1' + CONSOLE_COUNT)) { 119 120 /*FIXME: draw another console content from buffer */ 120 121 121 active_console = c - KBD_KEY_F1;122 active_console = c - '1'; 122 123 conn = &connections[active_console]; 123 124 … … 232 233 ipcarg_t retval, arg1 = 0xdead, arg2 = 0xbeef; 233 234 int i; 235 236 async_set_client_connection(client_connection); 234 237 235 238 /* Connect to keyboard driver */
Note:
See TracChangeset
for help on using the changeset viewer.