Changeset 26e7d6d in mainline for uspace/lib/net/include/tl_skel.h
- Timestamp:
- 2011-09-19T16:31:00Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a347a11
- Parents:
- 3842a955 (diff), 086290d (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/lib/net/include/tl_skel.h
r3842a955 r26e7d6d 39 39 */ 40 40 41 #include <async.h>42 41 #include <fibril_synch.h> 43 42 #include <ipc/services.h> 44 45 43 #include <adt/measured_strings.h> 46 44 #include <net/device.h> 47 45 #include <net/packet.h> 46 #include <async.h> 48 47 49 48 /** Module initialization. … … 51 50 * This has to be implemented in user code. 52 51 * 53 * @param[in] net_phone Networking module phone.52 * @param[in] sess Networking module session. 54 53 * 55 54 * @return EOK on success. … … 58 57 * 59 58 */ 60 extern int tl_initialize( int net_phone);59 extern int tl_initialize(async_sess_t *sess); 61 60 62 61 /** Per-connection module initialization. … … 83 82 ipc_call_t *, size_t *); 84 83 85 extern int tl_module_start( int);84 extern int tl_module_start(sysarg_t); 86 85 87 86 #endif
Note:
See TracChangeset
for help on using the changeset viewer.