summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f92d446)
raw | patch | inline | side by side (parent: f92d446)
author | niki <niki> | |
Sat, 17 Dec 2005 03:37:50 +0000 (03:37 +0000) | ||
committer | niki <niki> | |
Sat, 17 Dec 2005 03:37:50 +0000 (03:37 +0000) |
src/collectd.c | patch | blob | history |
diff --git a/src/collectd.c b/src/collectd.c
index c7ea35b6886b58e5189419dcd9b2efc26e927455..ebfc62c2c2ea2035236572b4f2db433d67927466 100644 (file)
--- a/src/collectd.c
+++ b/src/collectd.c
static int loop = 0;
-#ifdef HAVE_LIBKSTAT
+#if HAVE_LIBKSTAT
kstat_ctl_t *kc;
#endif /* HAVE_LIBKSTAT */
*/
time_t curtime;
-#ifdef HAVE_LIBRRD
+#if HAVE_LIBRRD
int operating_mode;
#endif
return (0);
} /* static int change_basedir (char *dir) */
-#ifdef HAVE_LIBKSTAT
+#if HAVE_LIBKSTAT
static void
update_kstat (void)
{
{
int sleepingtime;
-#ifdef HAVE_LIBKSTAT
+#if HAVE_LIBKSTAT
kc = NULL;
update_kstat ();
#endif
-#ifdef HAVE_LIBSTATGRAB
+#if HAVE_LIBSTATGRAB
if (sg_init ())
{
syslog (LOG_ERR, "sg_init: %s", sg_str_error (sg_get_error ()));
while (loop == 0)
{
curtime = time (NULL);
-#ifdef HAVE_LIBKSTAT
+#if HAVE_LIBKSTAT
update_kstat ();
#endif
plugin_read_all ();
return (0);
} /* static int start_client (void) */
-#ifdef HAVE_LIBRRD
+#if HAVE_LIBRRD
static int
start_server (void)
{
char *logfile = LOGFILE;
#endif
-#ifdef HAVE_LIBRRD
+#if HAVE_LIBRRD
operating_mode = MODE_LOCAL;
#endif
switch (c)
{
-#ifdef HAVE_LIBRRD
+#if HAVE_LIBRRD
case 'c':
operating_mode = MODE_CLIENT;
break;
/*
* run the actual loops
*/
-#ifdef HAVE_LIBRRD
+#if HAVE_LIBRRD
if (operating_mode == MODE_SERVER)
start_server ();
else /* if (operating_mode == MODE_CLIENT || operating_mode == MODE_LOCAL) */