Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4703 → Rev 4704

/branches/network/uspace/srv/net/module.c
42,6 → 42,11
 
#include "err.h"
 
/** @name External module functions.
* This functions have to be implemented in every module.
*/
/*@{*/
 
/** External message processing function.
* Should process the messages.
* The function has to be defined in each module.
64,10 → 69,12
/** 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 functio to be registered. Input parameter.
* @param client_connection The client connection function to be registered. Input parameter.
*/
extern int module_start( async_client_conn_t client_connection );
 
/*@}*/
 
/** Default thread for new connections.
* @param iid The initial message identifier. Input parameter.
* @param icall The initial message call structure. Input parameter.