X-Git-Url: https://git.tokkee.org/?p=pkg-rrdtool.git;a=blobdiff_plain;f=src%2Frrd_not_thread_safe.c;h=efbd0027b1475bfedde6fcd61f9795003c0bf3b8;hp=ccc40fff5cf4282c5059b471157345cdbeb5f32f;hb=412b079ae92adc47a82bfc6a27de37a537420a26;hpb=5ae9312d35bd9931a761a15cbf1e8effe2e7b5d4 diff --git a/src/rrd_not_thread_safe.c b/src/rrd_not_thread_safe.c index ccc40ff..efbd002 100644 --- a/src/rrd_not_thread_safe.c +++ b/src/rrd_not_thread_safe.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2.27 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 * This file: Copyright 2003 Peter Stamfest * & Tobias Oetiker * Distributed under the GPL @@ -7,32 +7,36 @@ * rrd_not_thread_safe.c Contains routines used when thread safety is not * an issue ***************************************************************************** - * $Id: rrd_not_thread_safe.c 1286 2008-02-17 10:08:10Z oetiker $ + * $Id: rrd_not_thread_safe.c 1366 2008-05-18 13:06:44Z oetiker $ *************************************************************************** */ #include "rrd.h" #include "rrd_tool.h" #define MAXLEN 4096 #define ERRBUFLEN 256 -static char rrd_error[MAXLEN+10]; -static char rrd_liberror[ERRBUFLEN+10]; -static int rrd_context_init = 0; +static char rrd_error[MAXLEN + 10]; +static char rrd_liberror[ERRBUFLEN + 10]; +static int rrd_context_init = 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 = { MAXLEN, ERRBUFLEN, - rrd_error, + rrd_error, rrd_liberror }; + /* #include */ -struct rrd_context *rrd_get_context(void) { - if (! rrd_context_init ){ - rrd_context_init = 1; - global_ctx.rrd_error[0]='\0'; - global_ctx.lib_errstr[0]='\0'; +struct rrd_context *rrd_get_context( + void) +{ + if (!rrd_context_init) { + rrd_context_init = 1; + global_ctx.rrd_error[0] = '\0'; + global_ctx.lib_errstr[0] = '\0'; } return &global_ctx; } @@ -42,6 +46,8 @@ struct rrd_context *rrd_get_context(void) { 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); }