Changeset e40ec257 in mainline for uspace/lib/libc/generic/console.c


Ignore:
Timestamp:
2009-04-16T11:39:05Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3c0a841
Parents:
c33e36b
Message:

don't forget to flush the console after the application finishes
(yes, this is not very elegant, but until we have a proper stdin/stdout/stderr, the whole console stuff, buffering, etc. is just a big heap of hacks)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libc/generic/console.c

    rc33e36b re40ec257  
    239239}
    240240
     241void console_flush_optional(void)
     242{
     243        if (console_phone >= 0)
     244                console_flush();
     245}
     246
    241247int console_get_size(int *rows, int *cols)
    242248{
Note: See TracChangeset for help on using the changeset viewer.