diff options
| author | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-08-15 21:05:16 +0000 |
|---|---|---|
| committer | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-08-15 21:05:16 +0000 |
| commit | 4bd188c4383d6e614e18f79dc337fbabe8464c82 (patch) | |
| tree | 4a557aef24b72923d52721c93d7a25b6f64f0d80 /util.cpp | |
| parent | fix -datadir=./subdir relative path, (diff) | |
| download | discoin-4bd188c4383d6e614e18f79dc337fbabe8464c82.tar.xz discoin-4bd188c4383d6e614e18f79dc337fbabe8464c82.zip | |
misc changes
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@131 1a98c847-1fd6-4fd8-948a-caf3550aa51b
Diffstat (limited to 'util.cpp')
| -rw-r--r-- | util.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -19,6 +19,14 @@ bool fCommandLine = false; +// Workaround for "multiple definition of `_tls_used'"
+// http://svn.boost.org/trac/boost/ticket/4258
+extern "C" void tss_cleanup_implemented() { }
+
+
+
+
+
// Init openssl library multithreading support
static boost::interprocess::interprocess_mutex** ppmutexOpenSSL;
void locking_callback(int mode, int i, const char* file, int line)
|