Commit 32e68098 authored by SergeyV@selena's avatar SergeyV@selena

Post review updates for win32 port of mysqlslap

parent 94b26428
...@@ -98,9 +98,6 @@ TODO: ...@@ -98,9 +98,6 @@ TODO:
#define srandom srand #define srandom srand
#define random rand #define random rand
#define snprintf _snprintf #define snprintf _snprintf
#define USE_THREADS_DEFAULT TRUE
#else
#define USE_THREADS_DEFAULT FALSE
#endif #endif
#ifdef HAVE_SMEM #ifdef HAVE_SMEM
...@@ -248,7 +245,10 @@ int main(int argc, char **argv) ...@@ -248,7 +245,10 @@ int main(int argc, char **argv)
unsigned long long client_limit; unsigned long long client_limit;
statement *eptr; statement *eptr;
//DBUG_ENTER("main"); #ifdef __WIN__
opt_use_threads= 1;
#endif
MY_INIT(argv[0]); MY_INIT(argv[0]);
/* Seed the random number generator if we will be using it. */ /* Seed the random number generator if we will be using it. */
...@@ -478,7 +478,7 @@ static struct my_option my_long_options[] = ...@@ -478,7 +478,7 @@ static struct my_option my_long_options[] =
{"use-threads", OPT_USE_THREADS, {"use-threads", OPT_USE_THREADS,
"Use pthread calls instead of fork() calls (default on Windows)", "Use pthread calls instead of fork() calls (default on Windows)",
(gptr*) &opt_use_threads, (gptr*) &opt_use_threads, 0, (gptr*) &opt_use_threads, (gptr*) &opt_use_threads, 0,
GET_NO_ARG, NO_ARG, USE_THREADS_DEFAULT, 0, 0, 0, 0, 0}, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
#include <sslopt-longopts.h> #include <sslopt-longopts.h>
#ifndef DONT_ALLOW_USER_CHANGE #ifndef DONT_ALLOW_USER_CHANGE
{"user", 'u', "User for login if not current user.", (gptr*) &user, {"user", 'u', "User for login if not current user.", (gptr*) &user,
......
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