Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/locsrv/locsrv.c

    radb1ae9 rc1694b6b  
    4747#include <stdlib.h>
    4848#include <str.h>
     49#include <str_error.h>
    4950#include <ipc/loc.h>
    5051#include <assert.h>
     
    13471348        categ_dir_add_cat(&cdir, cat);
    13481349
     1350        cat = category_new("console");
     1351        categ_dir_add_cat(&cdir, cat);
     1352
    13491353        cat = category_new("clock");
    13501354        categ_dir_add_cat(&cdir, cat);
     
    15261530        int rc = async_create_port(INTERFACE_LOC_SUPPLIER,
    15271531            loc_connection_supplier, NULL, &port);
    1528         if (rc != EOK)
     1532        if (rc != EOK) {
     1533                printf("%s: Error while creating supplier port: %s\n", NAME, str_error(rc));
    15291534                return rc;
     1535        }
    15301536       
    15311537        rc = async_create_port(INTERFACE_LOC_CONSUMER,
    15321538            loc_connection_consumer, NULL, &port);
    1533         if (rc != EOK)
     1539        if (rc != EOK) {
     1540                printf("%s: Error while creating consumer port: %s\n", NAME, str_error(rc));
    15341541                return rc;
     1542        }
    15351543       
    15361544        /* Set a handler of incomming connections */
     
    15391547        /* Register location service at naming service */
    15401548        rc = service_register(SERVICE_LOC);
    1541         if (rc != EOK)
     1549        if (rc != EOK) {
     1550                printf("%s: Error while registering service: %s\n", NAME, str_error(rc));
    15421551                return rc;
     1552        }
    15431553       
    15441554        printf("%s: Accepting connections\n", NAME);
Note: See TracChangeset for help on using the changeset viewer.