Changeset 7c3fb9b in mainline for uspace/srv/locsrv


Ignore:
Timestamp:
2018-05-17T08:29:01Z (8 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6ff23ff
Parents:
fac0ac7
git-author:
Jiri Svoboda <jiri@…> (2018-05-16 17:28:17)
git-committer:
Jiri Svoboda <jiri@…> (2018-05-17 08:29:01)
Message:

Fix block comment formatting (ccheck).

File:
1 edited

Legend:

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

    rfac0ac7 r7c3fb9b  
    6767LIST_INITIALIZE(servers_list);
    6868
    69 /* Locking order:
     69/*
     70 * Locking order:
    7071 *  servers_list_mutex
    7172 *  services_list_mutex
    7273 *  (loc_server_t *)->services_mutex
    7374 *  create_id_mutex
    74  **/
     75 */
    7576
    7677FIBRIL_MUTEX_INITIALIZE(services_list_mutex);
     
    9798service_id_t loc_create_id(void)
    9899{
    99         /* TODO: allow reusing old ids after their unregistration
     100        /*
     101         * TODO: allow reusing old ids after their unregistration
    100102         * and implement some version of LRU algorithm, avoid overflow
    101103         */
     
    389391        fibril_mutex_lock(&servers_list_mutex);
    390392
    391         /* TODO:
     393        /*
     394         * TODO:
    392395         * Check that no server with name equal to
    393396         * server->name is registered
     
    10571060static void loc_get_services(cap_call_handle_t icall_handle, ipc_call_t *icall)
    10581061{
    1059         /* FIXME: Use faster algorithm which can make better use
    1060            of namespaces */
     1062        /*
     1063         * FIXME: Use faster algorithm which can make better use
     1064         * of namespaces
     1065         */
    10611066
    10621067        cap_call_handle_t chandle;
Note: See TracChangeset for help on using the changeset viewer.