Changeset 416abec in mainline for uspace/lib/libc/generic/io/stream.c
- Timestamp:
- 2009-03-20T20:58:21Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e622f0a8
- Parents:
- db90860
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/generic/io/stream.c
rdb90860 r416abec 57 57 ssize_t read_stdin(void *buf, size_t count) 58 58 { 59 int cons_phone = console_phone_get( );59 int cons_phone = console_phone_get(false); 60 60 61 61 if (cons_phone >= 0) { … … 80 80 ssize_t write_stdout(const void *buf, size_t count) 81 81 { 82 int cons_phone = console_phone_get( );82 int cons_phone = console_phone_get(false); 83 83 84 84 if (cons_phone >= 0) {
Note:
See TracChangeset
for help on using the changeset viewer.