Browse Source

fix windows embedded (default thread handling ==pool-of-threads does not work in embedded)

pull/374/head
Vladislav Vaintroub 14 years ago
parent
commit
e0a500eba3
  1. 2
      sql/sys_vars.cc

2
sql/sys_vars.cc

@ -1815,7 +1815,7 @@ static const char *thread_handling_names[]=
0
};
#ifdef _WIN32
#if defined (_WIN32) && defined (HAVE_POOL_OF_THREADS)
/* Windows is using OS threadpool, so we're pretty sure it works well */
#define DEFAULT_THREAD_HANDLING 2
#else

Loading…
Cancel
Save