Rev 4722 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4722 | Rev 4731 | ||
|---|---|---|---|
| Line 107... | Line 107... | ||
| 107 | 107 | ||
| 108 | /** Replies the data to the other party. |
108 | /** Replies the data to the other party. |
| 109 | * @param data The data buffer to be sent. Input parameter. |
109 | * @param data The data buffer to be sent. Input parameter. |
| 110 | * @param data_length The buffer length. Input parameter. |
110 | * @param data_length The buffer length. Input parameter. |
| 111 | * @returns EOK on success. |
111 | * @returns EOK on success. |
| 112 | * @returns EINVAL if the client does not expect all the data. |
112 | * @returns EINVAL if the client does not expect the data. |
| - | 113 | * @returns EOVERFLOW if the client does not expect all the data. Only partial data are transfered. |
|
| 113 | * @returns Other error codes as defined for the ipc_data_read_finalize() function. |
114 | * @returns Other error codes as defined for the ipc_data_read_finalize() function. |
| 114 | */ |
115 | */ |
| 115 | int data_reply( void * data, size_t data_length ); |
116 | int data_reply( void * data, size_t data_length ); |
| 116 | 117 | ||
| 117 | #endif |
118 | #endif |