Commit 25fd1c0f authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

turn off the cachetable writer threads on windows for now. addresses #1023

git-svn-id: file:///svn/toku/tokudb.1032b@7788 c7de825b-a66e-492c-adef-691d508d4ae1
parent 9fe13ba8
......@@ -4,7 +4,11 @@
#include "includes.h"
// execute the cachetable callbacks using a writer thread 0->no 1->yes
#if defined _WIN32
#define DO_WRITER_THREAD 0
#else
#define DO_WRITER_THREAD 1
#endif
#if DO_WRITER_THREAD
static void *cachetable_writer(void *);
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment