Commit 2078e104 authored by heikki's avatar heikki

Remove another accidentally committed change to srv0start.c.

The change was accidentally committed with the merge in r1068.
This revision corresponds to r1051 with a properly merged
r1067 of branches/5.0.
parent e81642c8
...@@ -1624,6 +1624,11 @@ innobase_start_or_create_for_mysql(void) ...@@ -1624,6 +1624,11 @@ innobase_start_or_create_for_mysql(void)
return((int)DB_ERROR); return((int)DB_ERROR);
} }
/* Create the master thread which does purge and other utility
operations */
os_thread_create(&srv_master_thread, NULL, thread_ids
+ (1 + SRV_MAX_N_IO_THREADS));
#ifdef UNIV_DEBUG #ifdef UNIV_DEBUG
/* buf_debug_prints = TRUE; */ /* buf_debug_prints = TRUE; */
#endif /* UNIV_DEBUG */ #endif /* UNIV_DEBUG */
...@@ -1731,12 +1736,6 @@ innobase_start_or_create_for_mysql(void) ...@@ -1731,12 +1736,6 @@ innobase_start_or_create_for_mysql(void)
fflush(stderr); fflush(stderr);
/* Create the master thread which does purge and other utility
operations */
os_thread_create(&srv_master_thread, NULL, thread_ids
+ (1 + SRV_MAX_N_IO_THREADS));
if (trx_doublewrite_must_reset_space_ids) { if (trx_doublewrite_must_reset_space_ids) {
/* Actually, we did not change the undo log format between /* Actually, we did not change the undo log format between
4.0 and 4.1.1, and we would not need to run purge to 4.0 and 4.1.1, and we would not need to run purge to
......
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