X-Git-Url: https://git.octo.it/?p=rrdtool.git;a=blobdiff_plain;f=src%2Frrd_not_thread_safe.c;h=2b1d00cc1611670fc02d2f927463a310e044fb11;hp=92bae6a09acca7e421232a4a725822afd8f2944a;hb=2ba0dac41cd82d69b612b5b4526f6e6f85c8abdc;hpb=0dc5d6d50c0d95ba4f04b656358b26518d4ce854 diff --git a/src/rrd_not_thread_safe.c b/src/rrd_not_thread_safe.c index 92bae6a..2b1d00c 100644 --- a/src/rrd_not_thread_safe.c +++ b/src/rrd_not_thread_safe.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2.9 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.3.2 Copyright by Tobi Oetiker, 1997-2008 * This file: Copyright 2003 Peter Stamfest * & Tobias Oetiker * Distributed under the GPL @@ -14,20 +14,19 @@ #define MAXLEN 4096 #define ERRBUFLEN 256 -static char rrd_error[MAXLEN] = "\0"; -static char rrd_liberror[ERRBUFLEN] = "\0"; /* The global context is very useful in the transition period to even more thread-safe stuff, it can be used whereever we need a context and do not need to worry about concurrency. */ -static struct rrd_context global_ctx = { - sizeof(rrd_error), - sizeof(rrd_liberror), - rrd_error, - rrd_liberror +static rrd_context_t global_ctx = { + "", + "" }; -#include -struct rrd_context *rrd_get_context() { +/* #include */ + +rrd_context_t *rrd_get_context( + void) +{ return &global_ctx; } @@ -36,6 +35,8 @@ struct rrd_context *rrd_get_context() { silently turning misplaced strerror into rrd_strerror, but here this turns recursive! */ #undef strerror -const char *rrd_strerror(int err) { +const char *rrd_strerror( + int err) +{ return strerror(err); }