summaryrefslogtreecommitdiff
path: root/sql/sql_cache.h
diff options
context:
space:
mode:
authorunknown <bell@sanja.is.com.ua>2005-09-06 11:16:53 +0300
committerunknown <bell@sanja.is.com.ua>2005-09-06 11:16:53 +0300
commitf5f896b4b96f18927864a70cbf23b09d922842fa (patch)
tree004f89b6b7df242fca8aff22d9dbf8bf672cb6a9 /sql/sql_cache.h
parent472b002b7510544018a0a254b6e0fd936e20835b (diff)
downloadmariadb-git-f5f896b4b96f18927864a70cbf23b09d922842fa.tar.gz
support of concurent query cache resizing (BUG#12848)
sql/mysql_priv.h: initialisation moved to mysqld.cc sql/mysqld.cc: initialisation moved to mysqld.cc sql/sql_cache.cc: support of concurent query cache resizing: - resizing made atomic - check stack size after each quard mutex lock sql/sql_cache.h: initialisation moved to mysqld.cc removed uneed parameter (now it is always under guard mutex protection or called from destruction)
Diffstat (limited to 'sql/sql_cache.h')
-rw-r--r--sql/sql_cache.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/sql/sql_cache.h b/sql/sql_cache.h
index 454f0318c12..854937d0158 100644
--- a/sql/sql_cache.h
+++ b/sql/sql_cache.h
@@ -310,10 +310,9 @@ protected:
Following function control structure_guard_mutex
by themself or don't need structure_guard_mutex
*/
- void init();
ulong init_cache();
void make_disabled();
- void free_cache(my_bool destruction);
+ void free_cache();
Query_cache_block *write_block_data(ulong data_len, gptr data,
ulong header_len,
Query_cache_block::block_type type,
@@ -346,6 +345,8 @@ protected:
uint def_query_hash_size = QUERY_CACHE_DEF_QUERY_HASH_SIZE,
uint def_table_hash_size = QUERY_CACHE_DEF_TABLE_HASH_SIZE);
+ /* initialize cache (mutex) */
+ void init();
/* resize query cache (return real query size, 0 if disabled) */
ulong resize(ulong query_cache_size);
inline void result_size_limit(ulong limit){query_cache_limit=limit;}