Changeset 416abec in mainline for uspace/lib/libc/generic/io/stream.c


Ignore:
Timestamp:
2009-03-20T20:58:21Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e622f0a8
Parents:
db90860
Message:

Improve the console library functions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libc/generic/io/stream.c

    rdb90860 r416abec  
    5757ssize_t read_stdin(void *buf, size_t count)
    5858{
    59         int cons_phone = console_phone_get();
     59        int cons_phone = console_phone_get(false);
    6060
    6161        if (cons_phone >= 0) {
     
    8080ssize_t write_stdout(const void *buf, size_t count)
    8181{
    82         int cons_phone = console_phone_get();
     82        int cons_phone = console_phone_get(false);
    8383
    8484        if (cons_phone >= 0) {
Note: See TracChangeset for help on using the changeset viewer.