Changeset fd7c98b in mainline


Ignore:
Timestamp:
2013-03-23T14:11:48Z (11 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
13318d1
Parents:
37ea333
Message:

libhound: Implement client side stream drain and recording.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/hound/src/protocol.c

    r37ea333 rfd7c98b  
    119119int hound_service_stream_drain(async_exch_t *exch)
    120120{
    121         //TODO implement
    122         return ENOTSUP;
     121        return async_req_0_0(exch, IPC_M_HOUND_STREAM_DRAIN);
    123122}
    124123
     
    130129int hound_service_stream_read(async_exch_t *exch, void *data, size_t size)
    131130{
    132         //TODO implement
    133         return ENOTSUP;
     131        return async_data_read_start(exch, data, size);
    134132}
    135133
Note: See TracChangeset for help on using the changeset viewer.