X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fentropy.c;fp=src%2Fentropy.c;h=5f9eb530caf33bf95e364199312f310d2e0fe8d8;hb=e4b274ed754af52196d3390b8ce101a7f94e318a;hp=7e903953bc10a55dad0f01d17fe231e37d8f4496;hpb=a905d397250bdcc9ae780c32fe36120267c17d82;p=collectd.git diff --git a/src/entropy.c b/src/entropy.c index 7e903953..5f9eb530 100644 --- a/src/entropy.c +++ b/src/entropy.c @@ -1,6 +1,6 @@ /** * collectd - src/entropy.c - * Copyright (C) 2005,2006 Florian octo Forster + * Copyright (C) 2007 Florian octo Forster * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -23,15 +23,12 @@ #include "common.h" #include "plugin.h" -#if KERNEL_LINUX -# define ENTROPY_HAVE_READ 1 -#else -# define ENTROPY_HAVE_READ 0 +#if !KERNEL_LINUX +# error "No applicable input method." #endif #define ENTROPY_FILE "/proc/sys/kernel/random/entropy_avail" -#if ENTROPY_HAVE_READ static void entropy_submit (double entropy) { value_t values[1]; @@ -52,7 +49,6 @@ static void entropy_submit (double entropy) static int entropy_read (void) { -#if KERNEL_LINUX double entropy; FILE *fh; char buffer[64]; @@ -72,15 +68,11 @@ static int entropy_read (void) if (entropy > 0.0) entropy_submit (entropy); -#endif /* KERNEL_LINUX */ return (0); } -#endif /* ENTROPY_HAVE_READ */ void module_register (void) { -#if ENTROPY_HAVE_READ plugin_register_read ("entropy", entropy_read); -#endif } /* void module_register */