1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Fix bug with shared memory's variables

sql/mysql_priv.h:
  Fix bugs with shared memory's variables
sql/mysqld.cc:
  Fix bugs with shared memory's variables
This commit is contained in:
unknown
2003-01-04 20:33:17 +05:00
parent f67891c244
commit e6a76efa29
2 changed files with 4 additions and 2 deletions

View File

@ -345,8 +345,8 @@ arg_cmp_func Arg_comparator::comparator_matrix[4][2] =
{&Arg_comparator::compare_int, &Arg_comparator::compare_e_int},
{&Arg_comparator::compare_row, &Arg_comparator::compare_e_row}};
#ifdef HAVE_SMEM
static char *shared_memory_base_name=default_shared_memory_base_name;
static bool opt_enable_shared_memory = 0;
char *shared_memory_base_name=default_shared_memory_base_name;
bool opt_enable_shared_memory = 0;
#endif
volatile ulong cached_thread_count=0;