Changeset a7d2d78 in mainline for console/console.c


Ignore:
Timestamp:
2006-06-03T22:49:28Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2400469
Parents:
1f36e90
Message:

Completed graphical console.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • console/console.c

    r1f36e90 ra7d2d78  
    227227                return;
    228228
    229         if (newcons == -1) {
    230                 if (active_console == -1)
     229        if (newcons == KERNEL_CONSOLE) {
     230                if (active_console == KERNEL_CONSOLE)
    231231                        return;
    232                 active_console = -1;
     232                active_console = KERNEL_CONSOLE;
    233233                curs_visibility(0);
    234234
     
    307307                        if ((c >= '0') && (c < '0' + CONSOLE_COUNT)) {
    308308                                if (c == '0')
    309                                         change_console(-1);
     309                                        change_console(KERNEL_CONSOLE);
    310310                                else
    311311                                        change_console(c - '1');
     
    343343                return;
    344344        }
    345 
     345       
     346        gcons_notify_connect(consnum);
    346347        connections[consnum].used = 1;
    347348        connections[consnum].client_phone = IPC_GET_ARG3(call);
Note: See TracChangeset for help on using the changeset viewer.