Changeset 3ce5162 in mainline for uspace/srv


Ignore:
Timestamp:
2012-01-25T18:03:38Z (14 years ago)
Author:
Frantisek Princ <frantisek.princ@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5c5f522
Parents:
ed6fdc7 (diff), 5cc9eba (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 with mainline

Location:
uspace/srv
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/loc/loc.c

    red6fdc7 r3ce5162  
    813813 * On success, answer will contain EOK int retval.
    814814 * On failure, error code will be sent in retval.
     815 *
    815816 */
    816817static void loc_callback_create(ipc_callid_t iid, ipc_call_t *icall)
    817818{
    818         cb_sess_t *cb_sess;
    819        
    820         cb_sess = calloc(1, sizeof(cb_sess_t));
     819        cb_sess_t *cb_sess = calloc(1, sizeof(cb_sess_t));
    821820        if (cb_sess == NULL) {
    822821                async_answer_0(iid, ENOMEM);
  • uspace/srv/net/net/net.h

    red6fdc7 r3ce5162  
    9696       
    9797        /** Serving network interface driver module index. */
    98         service_id_t sid;  /**< Service ID */
    99         async_sess_t *sess;      /**< Driver session. */
     98        service_id_t sid;    /**< Service ID */
     99        async_sess_t *sess;  /**< Driver session. */
    100100       
    101101        module_t *nil;  /**< Serving link layer module index. */
  • uspace/srv/net/nil/nildummy/nildummy.c

    red6fdc7 r3ce5162  
    360360    services_t sender)
    361361{
    362         packet_t *p;
    363        
    364362        fibril_rwlock_read_lock(&nildummy_globals.devices_lock);
    365363       
     
    371369        }
    372370       
    373         p = packet;
     371        packet_t *p = packet;
    374372        do {
    375373                nic_send_frame(device->sess, packet_get_data(p),
Note: See TracChangeset for help on using the changeset viewer.