Ignore:
Timestamp:
2011-07-20T15:26:21Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
efcebe1
Parents:
25bef0ff (diff), a701812 (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/srv/net/nil/nildummy/nildummy.h

    r25bef0ff r6a44ee4  
    3838#define NET_NILDUMMY_H_
    3939
     40#include <async.h>
    4041#include <fibril_synch.h>
    4142#include <ipc/services.h>
    42 
    4343#include <net/device.h>
    4444#include <adt/measured_strings.h>
     
    8181        services_t service;
    8282       
    83         /** Driver phone. */
    84         int phone;
     83        /** Driver session. */
     84        async_sess_t *sess;
    8585       
    8686        /** Maximal transmission unit. */
     
    9999        services_t service;
    100100       
    101         /** Protocol module phone. */
    102         int phone;
     101        /** Protocol module session. */
     102        async_sess_t *sess;
    103103};
    104104
    105105/** Dummy nil global data. */
    106106struct nildummy_globals {
    107         /** Networking module phone. */
    108         int net_phone;
     107        /** Networking module session. */
     108        async_sess_t *net_sess;
    109109       
    110110        /** Lock for devices. */
Note: See TracChangeset for help on using the changeset viewer.