Changeset a33f0a6 in mainline for uspace/srv/net/nil/nildummy/nildummy.h
- Timestamp:
- 2011-08-03T17:34:57Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1940326
- Parents:
- 52a79081 (diff), 3fab770 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/nil/nildummy/nildummy.h
r52a79081 ra33f0a6 38 38 #define NET_NILDUMMY_H_ 39 39 40 #include <async.h> 40 41 #include <fibril_synch.h> 41 42 #include <ipc/services.h> 42 43 43 #include <net/device.h> 44 44 #include <adt/measured_strings.h> … … 81 81 services_t service; 82 82 83 /** Driver phone. */84 int phone;83 /** Driver session. */ 84 async_sess_t *sess; 85 85 86 86 /** Maximal transmission unit. */ … … 99 99 services_t service; 100 100 101 /** Protocol module phone. */102 int phone;101 /** Protocol module session. */ 102 async_sess_t *sess; 103 103 }; 104 104 105 105 /** Dummy nil global data. */ 106 106 struct nildummy_globals { 107 /** Networking module phone. */108 int net_phone;107 /** Networking module session. */ 108 async_sess_t *net_sess; 109 109 110 110 /** Lock for devices. */
Note:
See TracChangeset
for help on using the changeset viewer.