Changeset a35b458 in mainline for uspace/srv/locsrv/locsrv.h


Ignore:
Timestamp:
2018-03-02T20:10:49Z (7 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
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)
Message:

style: Remove trailing whitespace on _all_ lines, including empty ones, for particular file types.

Command used: tools/srepl '\s\+$' '' -- *.c *.h *.py *.sh *.s *.S *.ag

Currently, whitespace on empty lines is very inconsistent.
There are two basic choices: Either remove the whitespace, or keep empty lines
indented to the level of surrounding code. The former is AFAICT more common,
and also much easier to do automatically.

Alternatively, we could write script for automatic indentation, and use that
instead. However, if such a script exists, it's possible to use the indented
style locally, by having the editor apply relevant conversions on load/save,
without affecting remote repository. IMO, it makes more sense to adopt
the simpler rule.

File:
1 edited

Legend:

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

    r3061bc1 ra35b458  
    4949        /** Link to servers_list */
    5050        link_t servers;
    51        
     51
    5252        /** List of services supplied by this server */
    5353        list_t services;
    54        
     54
    5555        /** Session asociated with this server */
    5656        async_sess_t *sess;
    57        
     57
    5858        /** Server name */
    5959        char *name;
    60        
     60
    6161        /** Fibril mutex for list of services owned by this server */
    6262        fibril_mutex_t services_mutex;
     
    6969        /** Link to namespaces_list */
    7070        link_t namespaces;
    71        
     71
    7272        /** Unique namespace identifier */
    7373        service_id_t id;
    74        
     74
    7575        /** Namespace name */
    7676        char *name;
    77        
     77
    7878        /** Reference count */
    7979        size_t refcnt;
     
    8686        /** Link to global list of services (services_list) */
    8787        link_t services;
    88        
     88
    8989        /** Link to server list of services (loc_server_t.services) */
    9090        link_t server_services;
    91        
     91
    9292        /** Link to list of services in category (category_t.services) */
    9393        link_t cat_services;
    94        
     94
    9595        /** List of category memberships (svc_categ_t) */
    9696        list_t cat_memb;
    97        
     97
    9898        /** Unique service identifier */
    9999        service_id_t id;
    100        
     100
    101101        /** Service namespace */
    102102        loc_namespace_t *namespace;
    103        
     103
    104104        /** Service name */
    105105        char *name;
    106        
     106
    107107        /** Supplier of this service */
    108108        loc_server_t *server;
Note: See TracChangeset for help on using the changeset viewer.