Changeset a7d2d78 in mainline for console/console.c
- Timestamp:
- 2006-06-03T22:49:28Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2400469
- Parents:
- 1f36e90
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
console/console.c
r1f36e90 ra7d2d78 227 227 return; 228 228 229 if (newcons == -1) {230 if (active_console == -1)229 if (newcons == KERNEL_CONSOLE) { 230 if (active_console == KERNEL_CONSOLE) 231 231 return; 232 active_console = -1;232 active_console = KERNEL_CONSOLE; 233 233 curs_visibility(0); 234 234 … … 307 307 if ((c >= '0') && (c < '0' + CONSOLE_COUNT)) { 308 308 if (c == '0') 309 change_console( -1);309 change_console(KERNEL_CONSOLE); 310 310 else 311 311 change_console(c - '1'); … … 343 343 return; 344 344 } 345 345 346 gcons_notify_connect(consnum); 346 347 connections[consnum].used = 1; 347 348 connections[consnum].client_phone = IPC_GET_ARG3(call);
Note:
See TracChangeset
for help on using the changeset viewer.