Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/il/arp/arp_module.c

    r614d065 r08e3ca4  
    3232
    3333/** @file
    34  *  ARP standalone module implementation.
    35  *  Contains skeleton module functions mapping.
    36  *  The functions are used by the module skeleton as module specific entry points.
    37  *  @see module.c
     34 * ARP standalone module implementation.
     35 * Contains skeleton module functions mapping.
     36 * The functions are used by the module skeleton as module specific entry
     37 * points.
     38 * @see module.c
    3839 */
    3940
    4041#include <async.h>
    4142#include <stdio.h>
    42 #include <err.h>
     43#include <errno.h>
    4344
    4445#include <ipc/ipc.h>
     
    5354#include "arp_module.h"
    5455
    55 /** ARP module global data.
    56  */
    57 extern arp_globals_t    arp_globals;
     56/** ARP module global data. */
     57extern arp_globals_t arp_globals;
    5858
    59 /** Processes the ARP message.
    60  *  @param[in] callid The message identifier.
    61  *  @param[in] call The message parameters.
    62  *  @param[out] answer The message answer parameters.
    63  *  @param[out] answer_count The last parameter for the actual answer in the answer parameter.
    64  *  @returns EOK on success.
    65  *  @returns Other error codes as defined for the arp_message() function.
    66  */
    67 int il_module_message_standalone(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){
     59int
     60il_module_message_standalone(ipc_callid_t callid, ipc_call_t *call,
     61    ipc_call_t *answer, int *answer_count)
     62{
    6863        return arp_message_standalone(callid, call, answer, answer_count);
    6964}
    7065
    71 /** Starts the ARP module.
    72  *  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.
    73  *  @param[in] client_connection The client connection processing function. The module skeleton propagates its own one.
    74  *  @returns EOK on successful module termination.
    75  *  @returns Other error codes as defined for the arp_initialize() function.
    76  *  @returns Other error codes as defined for the REGISTER_ME() macro function.
    77  */
    78 int il_module_start_standalone(async_client_conn_t client_connection){
    79         ERROR_DECLARE;
     66int il_module_start_standalone(async_client_conn_t client_connection)
     67{
     68        ipcarg_t phonehash;
     69        int rc;
    8070       
    8171        async_set_client_connection(client_connection);
    8272        arp_globals.net_phone = net_connect_module();
    83         ERROR_PROPAGATE(pm_init());
    8473       
    85         ipcarg_t phonehash;
    86         if (ERROR_OCCURRED(arp_initialize(client_connection))
    87             || ERROR_OCCURRED(REGISTER_ME(SERVICE_ARP, &phonehash))) {
    88                 pm_destroy();
    89                 return ERROR_CODE;
    90         }
     74        rc = pm_init();
     75        if (rc != EOK)
     76                return rc;
     77       
     78        rc = arp_initialize(client_connection);
     79        if (rc != EOK)
     80                goto out;
     81       
     82        rc = REGISTER_ME(SERVICE_ARP, &phonehash);
     83        if (rc != EOK)
     84                goto out;
    9185       
    9286        async_manager();
    93        
     87
     88out:
    9489        pm_destroy();
    95         return EOK;
     90        return rc;
    9691}
    9792
Note: See TracChangeset for help on using the changeset viewer.