From: Tobias Oetiker Date: Tue, 10 Nov 2015 19:02:28 +0000 (+0100) Subject: remove rrd_th since we are now thread safe by default X-Git-Tag: v1.6.0~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6daaa90e06be0bcababa2b12d2188171c268fda1;p=thirdparty%2Frrdtool-1.x.git remove rrd_th since we are now thread safe by default --- diff --git a/src/rrd_not_thread_safe.c b/src/rrd_not_thread_safe.c deleted file mode 100644 index d86e075a..00000000 --- a/src/rrd_not_thread_safe.c +++ /dev/null @@ -1,42 +0,0 @@ -/***************************************************************************** - * RRDtool 1.GIT, Copyright by Tobi Oetiker - * This file: Copyright 2003 Peter Stamfest - * & Tobias Oetiker - * Distributed under the GPL - ***************************************************************************** - * rrd_not_thread_safe.c Contains routines used when thread safety is not - * an issue - ***************************************************************************** - * $Id$ - *************************************************************************** */ -#include "rrd.h" -#include "rrd_tool.h" -#define MAXLEN 4096 -#define ERRBUFLEN 256 - -/* 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 rrd_context_t global_ctx = { - "", - "" -}; - -/* #include */ - -rrd_context_t *rrd_get_context( - void) -{ - return &global_ctx; -} - -/* how ugly that is!!! - make sure strerror is what it should be. It - might be redefined to help in keeping other modules thread safe by - silently turning misplaced strerror into rrd_strerror, but here - this turns recursive! */ -#undef strerror -const char *rrd_strerror( - int err) -{ - return strerror(err); -}