Changeset a35b458 in mainline for uspace/lib/c/generic/private/stdio.h
- Timestamp:
- 2018-03-02T20:10:49Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f1380b7
- Parents:
- 3061bc1
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:38:31)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:10:49)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/private/stdio.h
r3061bc1 ra35b458 46 46 /** Linked list pointer. */ 47 47 link_t link; 48 48 49 49 /** Underlying file descriptor. */ 50 50 int fd; … … 52 52 /** File position. */ 53 53 aoff64_t pos; 54 54 55 55 /** Error indicator. */ 56 56 int error; 57 57 58 58 /** End-of-file indicator. */ 59 59 int eof; 60 60 61 61 /** KIO indicator */ 62 62 int kio; 63 63 64 64 /** Session to the file provider */ 65 65 async_sess_t *sess; 66 66 67 67 /** 68 68 * Non-zero if the stream needs sync on fflush(). XXX change … … 70 70 */ 71 71 int need_sync; 72 72 73 73 /** Buffering type */ 74 74 enum _buffer_type btype; 75 75 76 76 /** Buffer */ 77 77 uint8_t *buf; 78 78 79 79 /** Buffer size */ 80 80 size_t buf_size; 81 81 82 82 /** Buffer state */ 83 83 enum _buffer_state buf_state; 84 84 85 85 /** Buffer I/O pointer */ 86 86 uint8_t *buf_head; 87 87 88 88 /** Points to end of occupied space when in read mode. */ 89 89 uint8_t *buf_tail;
Note:
See TracChangeset
for help on using the changeset viewer.