Changeset 858fc90 in mainline for uspace/srv/net/netif/netif_standalone.c
- Timestamp:
- 2010-03-15T19:35:25Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6092b56e
- Parents:
- 92307f1 (diff), 4684368 (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/netif/netif_standalone.c
r92307f1 r858fc90 50 50 * @returns Other error codes as defined for each specific module message function. 51 51 */ 52 int module_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count);52 int module_message(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count); 53 53 54 54 /** Starts the network interface module. … … 58 58 * @returns Other error codes as defined for each specific module message function. 59 59 */ 60 int module_start( async_client_conn_t client_connection);60 int module_start(async_client_conn_t client_connection); 61 61 62 int module_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){63 return netif_message( callid, call, answer, answer_count);62 int module_message(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){ 63 return netif_message(callid, call, answer, answer_count); 64 64 } 65 65 66 int module_start( async_client_conn_t client_connection){66 int module_start(async_client_conn_t client_connection){ 67 67 ERROR_DECLARE; 68 68 69 ERROR_PROPAGATE( netif_init_module( client_connection));69 ERROR_PROPAGATE(netif_init_module(client_connection)); 70 70 return netif_run_module(); 71 71 }
Note:
See TracChangeset
for help on using the changeset viewer.