Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/net/modules.c

    r1bfd3d3 r16ac756  
    159159 *
    160160 * @param[in] need      The needed module service.
    161  * @return              The phone of the needed service.
     161 * @returns             The phone of the needed service.
    162162 */
    163163int connect_to_service(services_t need)
     
    171171 *  @param[in] timeout  The connection timeout in microseconds. No timeout if
    172172 *                      set to zero (0).
    173  *  @return             The phone of the needed service.
    174  *  @return             ETIMEOUT if the connection timeouted.
     173 *  @returns            The phone of the needed service.
     174 *  @returns            ETIMEOUT if the connection timeouted.
    175175 */
    176176int connect_to_service_timeout(services_t need, suseconds_t timeout)
     
    204204 * @param[out] data     The data buffer to be filled.
    205205 * @param[out] length   The buffer length.
    206  * @return              EOK on success.
    207  * @return              EBADMEM if the data or the length parameter is NULL.
    208  * @return              EINVAL if the client does not send data.
    209  * @return              ENOMEM if there is not enough memory left.
    210  * @return              Other error codes as defined for the
     206 * @returns             EOK on success.
     207 * @returns             EBADMEM if the data or the length parameter is NULL.
     208 * @returns             EINVAL if the client does not send data.
     209 * @returns             ENOMEM if there is not enough memory left.
     210 * @returns             Other error codes as defined for the
    211211 *                      async_data_write_finalize() function.
    212212 */
     
    242242 * @param[in] data      The data buffer to be sent.
    243243 * @param[in] data_length The buffer length.
    244  * @return              EOK on success.
    245  * @return              EINVAL if the client does not expect the data.
    246  * @return              EOVERFLOW if the client does not expect all the data.
     244 * @returns             EOK on success.
     245 * @returns             EINVAL if the client does not expect the data.
     246 * @returns             EOVERFLOW if the client does not expect all the data.
    247247 *                      Only partial data are transfered.
    248  * @return              Other error codes as defined for the
     248 * @returns             Other error codes as defined for the
    249249 *                      async_data_read_finalize() function.
    250250 */
Note: See TracChangeset for help on using the changeset viewer.