Changeset eed4139 in mainline for uspace/srv/ns


Ignore:
Timestamp:
2018-03-22T23:23:18Z (7 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cbb37b6
Parents:
77f0a1d
Message:

Fix some comments mentioning 'call IDs'

Location:
uspace/srv/ns
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/ns/clonable.c

    r77f0a1d reed4139  
    108108/** Connect client to clonable service.
    109109 *
    110  * @param service Service to be connected to.
    111  * @param iface   Interface to be connected to.
    112  * @param call    Pointer to call structure.
    113  * @param chandle  Call ID of the request.
     110 * @param service  Service to be connected to.
     111 * @param iface    Interface to be connected to.
     112 * @param call     Pointer to call structure.
     113 * @param chandle  Call handle of the request.
    114114 *
    115115 * @return Zero on success or a value from @ref errno.h.
  • uspace/srv/ns/service.c

    r77f0a1d reed4139  
    160160/** Connect client to service.
    161161 *
    162  * @param service Service to be connected to.
    163  * @param iface   Interface to be connected to.
    164  * @param call    Pointer to call structure.
    165  * @param chandle  Call ID of the request.
     162 * @param service  Service to be connected to.
     163 * @param iface    Interface to be connected to.
     164 * @param call     Pointer to call structure.
     165 * @param chandle  Call handle of the request.
    166166 *
    167167 * @return Zero on success or a value from @ref errno.h.
  • uspace/srv/ns/task.c

    r77f0a1d reed4139  
    145145typedef struct {
    146146        link_t link;
    147         task_id_t id;         /**< Task ID. */
    148         cap_call_handle_t chandle;  /**< Call ID waiting for the connection */
     147        task_id_t id;               ///< Task ID
     148        cap_call_handle_t chandle;  ///< Call handle waiting for the connection
    149149} pending_wait_t;
    150150
Note: See TracChangeset for help on using the changeset viewer.