Changeset a35b458 in mainline for uspace/srv/locsrv/locsrv.h
- Timestamp:
- 2018-03-02T20:10:49Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f1380b7
- Parents:
- 3061bc1
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:38:31)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:10:49)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/locsrv/locsrv.h
r3061bc1 ra35b458 49 49 /** Link to servers_list */ 50 50 link_t servers; 51 51 52 52 /** List of services supplied by this server */ 53 53 list_t services; 54 54 55 55 /** Session asociated with this server */ 56 56 async_sess_t *sess; 57 57 58 58 /** Server name */ 59 59 char *name; 60 60 61 61 /** Fibril mutex for list of services owned by this server */ 62 62 fibril_mutex_t services_mutex; … … 69 69 /** Link to namespaces_list */ 70 70 link_t namespaces; 71 71 72 72 /** Unique namespace identifier */ 73 73 service_id_t id; 74 74 75 75 /** Namespace name */ 76 76 char *name; 77 77 78 78 /** Reference count */ 79 79 size_t refcnt; … … 86 86 /** Link to global list of services (services_list) */ 87 87 link_t services; 88 88 89 89 /** Link to server list of services (loc_server_t.services) */ 90 90 link_t server_services; 91 91 92 92 /** Link to list of services in category (category_t.services) */ 93 93 link_t cat_services; 94 94 95 95 /** List of category memberships (svc_categ_t) */ 96 96 list_t cat_memb; 97 97 98 98 /** Unique service identifier */ 99 99 service_id_t id; 100 100 101 101 /** Service namespace */ 102 102 loc_namespace_t *namespace; 103 103 104 104 /** Service name */ 105 105 char *name; 106 106 107 107 /** Supplier of this service */ 108 108 loc_server_t *server;
Note:
See TracChangeset
for help on using the changeset viewer.