Changeset fe5a9fc in mainline for uspace/srv/net/il/arp/arp_module.c
- Timestamp:
- 2011-01-12T11:25:54Z (12 years ago)
- Branches:
- lfn, master, serial
- Children:
- 73ac2e9
- Parents:
- 77429d3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/il/arp/arp_module.c
r77429d3 rfe5a9fc 57 57 extern arp_globals_t arp_globals; 58 58 59 int il_module_message _standalone(ipc_callid_t callid, ipc_call_t *call,59 int il_module_message(ipc_callid_t callid, ipc_call_t *call, 60 60 ipc_call_t *answer, size_t *count) 61 61 { 62 return arp_message _standalone(callid, call, answer, count);62 return arp_message(callid, call, answer, count); 63 63 } 64 64 65 int il_module_start _standalone(async_client_conn_t client_connection)65 int il_module_start(async_client_conn_t client_connection) 66 66 { 67 67 sysarg_t phonehash; 68 int rc;69 68 70 69 async_set_client_connection(client_connection); 71 70 arp_globals.net_phone = net_connect_module(); 72 71 73 rc = pm_init();72 int rc = pm_init(); 74 73 if (rc != EOK) 75 74 return rc; … … 84 83 85 84 async_manager(); 86 85 87 86 out: 88 87 pm_destroy();
Note: See TracChangeset
for help on using the changeset viewer.