X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Fentropy.c;h=de35291c1955f540a661885e27f7b9b9061ea2e2;hp=02ea9e113b5b34af4fb6fa3a0d3a157a7fab2274;hb=936c450a86c841eea89888c8550c9118fae90c25;hpb=77ad300d75ce59bf4d49d839a2af72e90590033c diff --git a/src/entropy.c b/src/entropy.c index 02ea9e11..de35291c 100644 --- a/src/entropy.c +++ b/src/entropy.c @@ -30,37 +30,33 @@ #include "plugin.h" #if !KERNEL_LINUX -# error "No applicable input method." +#error "No applicable input method." #endif #define ENTROPY_FILE "/proc/sys/kernel/random/entropy_avail" -static void entropy_submit (value_t value) -{ - value_list_t vl = VALUE_LIST_INIT; +static void entropy_submit(value_t value) { + value_list_t vl = VALUE_LIST_INIT; - vl.values = &value; - vl.values_len = 1; - sstrncpy (vl.plugin, "entropy", sizeof (vl.plugin)); - sstrncpy (vl.type, "entropy", sizeof (vl.type)); + vl.values = &value; + vl.values_len = 1; + sstrncpy(vl.plugin, "entropy", sizeof(vl.plugin)); + sstrncpy(vl.type, "entropy", sizeof(vl.type)); - plugin_dispatch_values (&vl); + plugin_dispatch_values(&vl); } -static int entropy_read (void) -{ - value_t v; - if (parse_value_file (ENTROPY_FILE, &v, DS_TYPE_GAUGE) != 0) - { - ERROR ("entropy plugin: Reading \""ENTROPY_FILE"\" failed."); - return (-1); - } +static int entropy_read(void) { + value_t v; + if (parse_value_file(ENTROPY_FILE, &v, DS_TYPE_GAUGE) != 0) { + ERROR("entropy plugin: Reading \"" ENTROPY_FILE "\" failed."); + return (-1); + } - entropy_submit (v); - return (0); + entropy_submit(v); + return (0); } -void module_register (void) -{ - plugin_register_read ("entropy", entropy_read); +void module_register(void) { + plugin_register_read("entropy", entropy_read); } /* void module_register */