Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4755 → Rev 4756

/branches/network/uspace/srv/net/module.c
51,10 → 51,10
/** External message processing function.
* Should process the messages.
* The function has to be defined in each module.
* @param callid The message identifier. Input parameter.
* @param call The message parameters. Input parameter.
* @param answer The message answer parameters. Output parameter.
* @param answer_count The last parameter for the actual answer in the answer parameter. Output parameter.
* @param[in] callid The message identifier.
* @param[in] call The message parameters.
* @param[out] answer The message answer parameters.
* @param[out] answer_count The last parameter for the actual answer in the answer parameter.
* @returns EOK on success.
* @returns ENOTSUP if the message is not known.
* @returns Other error codes as defined for each specific module message function.
70,7 → 70,7
/** External module startup function.
* Should start and initialize the module and register the given client connection function.
* The function has to be defined in each module.
* @param client_connection The client connection function to be registered. Input parameter.
* @param[in] client_connection The client connection function to be registered.
*/
extern int module_start( async_client_conn_t client_connection );
 
77,8 → 77,8
/*@}*/
 
/** Default thread for new connections.
* @param iid The initial message identifier. Input parameter.
* @param icall The initial message call structure. Input parameter.
* @param[in] iid The initial message identifier.
* @param[in] icall The initial message call structure.
*/
void client_connection( ipc_callid_t iid, ipc_call_t * icall );