Changeset 94fa807d in mainline


Ignore:
Timestamp:
2008-07-27T15:23:05Z (17 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8480714
Parents:
113c677
Message:

clear screen not until successful connection from console

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fb/msim.c

    r113c677 r94fa807d  
    138138       
    139139        client_connected = 1;
    140         ipc_answer_0(iid, EOK);
     140        ipc_answer_0(iid, EOK);
     141       
     142        /* Clear the terminal, set scrolling region
     143           to 0 - 25 lines */
     144        msim_clrscr();
     145        msim_goto(0, 0);
     146        msim_puts("\033[0;25r");
    141147       
    142148        while (true) {
     
    214220       
    215221        async_set_client_connection(msim_client_connection);
    216 
    217         /* Clear the terminal, set scrolling region
    218            to 0 - 25 lines */
    219         msim_clrscr();
    220         msim_goto(0, 0);
    221         msim_puts("\033[0;25r");
    222 
    223222        return 0;
    224223}
Note: See TracChangeset for help on using the changeset viewer.