Changeset 26e7d6d in mainline for uspace/lib/net/include/il_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/il_skel.h
r3842a955 r26e7d6d 39 39 */ 40 40 41 #include <async.h>42 #include <fibril_synch.h>43 41 #include <ipc/services.h> 44 45 42 #include <adt/measured_strings.h> 46 43 #include <net/device.h> 47 44 #include <net/packet.h> 45 #include <async.h> 48 46 49 47 /** Module initialization. … … 51 49 * This has to be implemented in user code. 52 50 * 53 * @param[in] net_phone Networking module phone.51 * @param[in] sess Networking module session. 54 52 * 55 53 * @return EOK on success. … … 58 56 * 59 57 */ 60 extern int il_initialize( int net_phone);58 extern int il_initialize(async_sess_t *sess); 61 59 62 60 /** Process the internetwork layer module message. … … 76 74 ipc_call_t *answer, size_t *answer_count); 77 75 78 extern int il_module_start( int);76 extern int il_module_start(sysarg_t); 79 77 80 78 #endif
Note:
See TracChangeset
for help on using the changeset viewer.