Changes in uspace/srv/net/nil/eth/eth_module.c [614d065:404dbae] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/nil/eth/eth_module.c
r614d065 r404dbae 50 50 #include "eth.h" 51 51 52 /** Starts the Ethernet module.53 * Initializes the client connection serving function, initializes the module, registers the module service and starts the async manager, processing IPC messages in an infinite loop.54 * @param[in] client_connection The client connection processing function. The module skeleton propagates its own one.55 * @returns EOK on success.56 * @returns Other error codes as defined for the pm_init() function.57 * @returns Other error codes as defined for the nil_initialize() function.58 * @returns Other error codes as defined for the REGISTER_ME() macro function.59 */60 52 int nil_module_start_standalone(async_client_conn_t client_connection) 61 53 { … … 79 71 } 80 72 81 /** Pass the parameters to the module specific nil_message() function.82 *83 * @param[in] name Module name.84 * @param[in] callid The message identifier.85 * @param[in] call The message parameters.86 * @param[out] answer The message answer parameters.87 * @param[out] answer_count The last parameter for the actual answer88 * in the answer parameter.89 *90 * @return EOK on success.91 * @return ENOTSUP if the message is not known.92 * @return Other error codes as defined for each93 * specific module message function.94 *95 */96 73 int nil_module_message_standalone(const char *name, ipc_callid_t callid, ipc_call_t *call, 97 74 ipc_call_t *answer, int *answer_count)
Note:
See TracChangeset
for help on using the changeset viewer.