library: fixed miscellaneous whitespace/comment issues
. ensure whitespace exists between the code & comments [ changing txt slightly keeps right margin alignment ] . strive for more consistency with some comment styles [ don't use C '/*' style where C++ '//' style exists ] . removed the instance of double space in 1 assignment [ still striving for consistency in whitespace usage ] . fixed comment relating to number of 'derived fields' [ the <meminfo> api recently added one new such enum ] Signed-off-by: Jim Warner <james.warner@comcast.net>
This commit is contained in:
@@ -99,13 +99,13 @@ struct fetch_support {
|
||||
struct diskstats_info {
|
||||
int refcount;
|
||||
FILE *diskstats_fp;
|
||||
time_t old_stamp; /* previous read seconds */
|
||||
time_t new_stamp; /* current read seconds */
|
||||
struct dev_node *nodes; /* dev nodes anchor */
|
||||
struct ext_support select_ext; /* supports concurrent select/reap */
|
||||
struct ext_support fetch_ext; /* supports concurrent select/reap */
|
||||
struct fetch_support fetch; /* support for procps_diskstats_reap */
|
||||
struct diskstats_result get_this; /* used by procps_diskstats_get */
|
||||
time_t old_stamp; // previous read seconds
|
||||
time_t new_stamp; // current read seconds
|
||||
struct dev_node *nodes; // dev nodes anchor
|
||||
struct ext_support select_ext; // supports concurrent select/reap
|
||||
struct ext_support fetch_ext; // supports concurrent select/reap
|
||||
struct fetch_support fetch; // support for procps_diskstats_reap
|
||||
struct diskstats_result get_this; // used by procps_diskstats_get
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user