Ignore:
Timestamp:
2009-04-21T12:43:14Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c2417bc
Parents:
d6d04e7
Message:

rename _getc() to indev_pop_character()
implicit creation of stdin via stdin_wire()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/console/kconsole.c

    rd6d04e7 r44b7783  
    246246       
    247247        while (true) {
    248                 wchar_t ch = _getc(indev);
     248                wchar_t ch = indev_pop_character(indev);
    249249               
    250250                if (ch == '\n') {
     
    654654       
    655655        if (kcon)
    656                 _getc(stdin);
     656                indev_pop_character(stdin);
    657657        else
    658658                printf("Type \"exit\" to leave the console.\n");
Note: See TracChangeset for help on using the changeset viewer.