Ignore:
Timestamp:
2010-11-19T23:50:06Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
46d4d9f
Parents:
b4c9c61 (diff), a9c6b966 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/packet/generic/packet_server.c

    rb4c9c61 rfdbc3ff  
    103103};
    104104
    105 int packet_translate_local(int phone, packet_ref packet, packet_id_t packet_id)
     105int packet_translate_local(int phone, packet_t *packet, packet_id_t packet_id)
    106106{
    107107        if (!packet)
     
    154154 * @param[in] max_content The maximal content length in bytes.
    155155 * @param[in] max_suffix The maximal suffix length in bytes.
    156  * @returns             The packet of dimensions at least as given.
    157  * @returns             NULL if there is not enough memory left.
     156 * @return              The packet of dimensions at least as given.
     157 * @return              NULL if there is not enough memory left.
    158158 */
    159159static packet_t
     
    278278 *
    279279 * @param[in] packet_id The first packet identifier.
    280  * @returns             EOK on success.
    281  * @returns             ENOENT if there is no such packet.
     280 * @return              EOK on success.
     281 * @return              ENOENT if there is no such packet.
    282282 */
    283283static int packet_release_wrapper(packet_id_t packet_id)
     
    303303/** Shares the packet memory block.
    304304 * @param[in] packet    The packet to be shared.
    305  * @returns             EOK on success.
    306  * @returns             EINVAL if the packet is not valid.
    307  * @returns             EINVAL if the calling module does not accept the memory.
    308  * @returns             ENOMEM if the desired and actual sizes differ.
    309  * @returns             Other error codes as defined for the
     305 * @return              EOK on success.
     306 * @return              EINVAL if the packet is not valid.
     307 * @return              EINVAL if the calling module does not accept the memory.
     308 * @return              ENOMEM if the desired and actual sizes differ.
     309 * @return              Other error codes as defined for the
    310310 *                      async_share_in_finalize() function.
    311311 */
     
    339339 * @param[out] answer_count The last parameter for the actual answer in the
    340340 *                      answer parameter.
    341  * @returns             EOK on success.
    342  * @returns             ENOMEM if there is not enough memory left.
    343  * @returns             ENOENT if there is no such packet as in the packet
     341 * @return              EOK on success.
     342 * @return              ENOMEM if there is not enough memory left.
     343 * @return              ENOENT if there is no such packet as in the packet
    344344 *                      message parameter.
    345  * @returns             ENOTSUP if the message is not known.
    346  * @returns             Other error codes as defined for the
     345 * @return              ENOTSUP if the message is not known.
     346 * @return              Other error codes as defined for the
    347347 *                      packet_release_wrapper() function.
    348348 */
Note: See TracChangeset for help on using the changeset viewer.