Changeset fd7c98b in mainline for uspace/lib/hound/src/protocol.c
- Timestamp:
- 2013-03-23T14:11:48Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 13318d1
- Parents:
- 37ea333
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/hound/src/protocol.c
r37ea333 rfd7c98b 119 119 int hound_service_stream_drain(async_exch_t *exch) 120 120 { 121 //TODO implement 122 return ENOTSUP; 121 return async_req_0_0(exch, IPC_M_HOUND_STREAM_DRAIN); 123 122 } 124 123 … … 130 129 int hound_service_stream_read(async_exch_t *exch, void *data, size_t size) 131 130 { 132 //TODO implement 133 return ENOTSUP; 131 return async_data_read_start(exch, data, size); 134 132 } 135 133
Note:
See TracChangeset
for help on using the changeset viewer.