aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_statistics_service.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-10-21 12:44:37 +0000
committerChristian Grothoff <christian@grothoff.org>2009-10-21 12:44:37 +0000
commit244acf03bb6313c3e8a900c940f1eed5536c7aa9 (patch)
tree02b7b8c5741a7b57332338055ee2e902eab21e0e /src/include/gnunet_statistics_service.h
parent8ee36bffa3c4afdb4d41ee9cd9565bac2ead9d2c (diff)
downloadgnunet-244acf03bb6313c3e8a900c940f1eed5536c7aa9.tar.gz
gnunet-244acf03bb6313c3e8a900c940f1eed5536c7aa9.zip
extra debug for datastore, stats api fix
Diffstat (limited to 'src/include/gnunet_statistics_service.h')
-rw-r--r--src/include/gnunet_statistics_service.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/gnunet_statistics_service.h b/src/include/gnunet_statistics_service.h
index 2496f4091..d8f17b8a1 100644
--- a/src/include/gnunet_statistics_service.h
+++ b/src/include/gnunet_statistics_service.h
@@ -64,7 +64,7 @@ struct GNUNET_STATISTICS_Handle;
64typedef int (*GNUNET_STATISTICS_Iterator) (void *cls, 64typedef int (*GNUNET_STATISTICS_Iterator) (void *cls,
65 const char *subsystem, 65 const char *subsystem,
66 const char *name, 66 const char *name,
67 unsigned long long value, 67 uint64_t value,
68 int is_persistent); 68 int is_persistent);
69 69
70/** 70/**
@@ -129,7 +129,7 @@ GNUNET_STATISTICS_get (struct GNUNET_STATISTICS_Handle *handle,
129void 129void
130GNUNET_STATISTICS_set (struct GNUNET_STATISTICS_Handle *handle, 130GNUNET_STATISTICS_set (struct GNUNET_STATISTICS_Handle *handle,
131 const char *name, 131 const char *name,
132 unsigned long long value, int make_persistent); 132 uint64_t value, int make_persistent);
133 133
134/** 134/**
135 * Set statistic value for the peer. Will always use our 135 * Set statistic value for the peer. Will always use our
@@ -143,7 +143,7 @@ GNUNET_STATISTICS_set (struct GNUNET_STATISTICS_Handle *handle,
143void 143void
144GNUNET_STATISTICS_update (struct GNUNET_STATISTICS_Handle *handle, 144GNUNET_STATISTICS_update (struct GNUNET_STATISTICS_Handle *handle,
145 const char *name, 145 const char *name,
146 long long delta, int make_persistent); 146 int64_t delta, int make_persistent);
147 147
148 148
149 149