X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Fmemory.c;h=cc95496a72ffd9e3a77aed3b0810af61a044a90f;hp=ce9ef834d181fe0fddae15a786fb60f7f3054ba0;hb=06a86a60a7dabc685bdbd81ce3d36ea5f7e2c2d4;hpb=f25d207699e013bb47c0083fe56b8358a98f6f4d diff --git a/src/memory.c b/src/memory.c index ce9ef834..cc95496a 100644 --- a/src/memory.c +++ b/src/memory.c @@ -94,7 +94,7 @@ static int pagesize; #error "No applicable input method." #endif -static bool values_absolute = 1; +static bool values_absolute = true; static bool values_percentage; static int memory_config(oconfig_item_t *ci) /* {{{ */ @@ -163,9 +163,9 @@ static int memory_init(void) { #define MEMORY_SUBMIT(...) \ do { \ if (values_absolute) \ - plugin_dispatch_multivalue(vl, 0, DS_TYPE_GAUGE, __VA_ARGS__, NULL); \ + plugin_dispatch_multivalue(vl, false, DS_TYPE_GAUGE, __VA_ARGS__, NULL); \ if (values_percentage) \ - plugin_dispatch_multivalue(vl, 1, DS_TYPE_GAUGE, __VA_ARGS__, NULL); \ + plugin_dispatch_multivalue(vl, true, DS_TYPE_GAUGE, __VA_ARGS__, NULL); \ } while (0) static int memory_read_internal(value_list_t *vl) { @@ -268,7 +268,7 @@ static int memory_read_internal(value_list_t *vl) { char *fields[8]; int numfields; - bool detailed_slab_info = 0; + bool detailed_slab_info = false; gauge_t mem_total = 0; gauge_t mem_used = 0; @@ -299,10 +299,10 @@ static int memory_read_internal(value_list_t *vl) { val = &mem_slab_total; else if (strncasecmp(buffer, "SReclaimable:", 13) == 0) { val = &mem_slab_reclaimable; - detailed_slab_info = 1; + detailed_slab_info = true; } else if (strncasecmp(buffer, "SUnreclaim:", 11) == 0) { val = &mem_slab_unreclaimable; - detailed_slab_info = 1; + detailed_slab_info = true; } else continue;