Changeset 8ff0bd2 in mainline for uspace/srv/net/nil/nildummy/nildummy.h
- Timestamp:
- 2011-09-04T11:30:58Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 03bc76a
- Parents:
- d2c67e7 (diff), deac215e (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
rd2c67e7 r8ff0bd2 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.