~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/keycache.h

Moved the last of the libdrizzleclient calls into Protocol.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
/*
57
57
  The key cache structure
58
58
  It also contains read-only statistics parameters.
59
 
*/   
 
59
*/
60
60
 
61
61
typedef struct st_key_cache
62
62
{
105
105
  */
106
106
 
107
107
  uint64_t param_buff_size;    /* size the memory allocated for the cache  */
108
 
  ulong param_block_size;       /* size of the blocks in the key cache      */
109
 
  ulong param_division_limit;   /* min. percentage of warm blocks           */
110
 
  ulong param_age_threshold;    /* determines when hot block is downgraded  */
 
108
  uint32_t param_block_size;   /* size of the blocks in the key cache      */
 
109
  uint32_t param_division_limit; /* min. percentage of warm blocks           */
 
110
  uint32_t param_age_threshold;    /* determines when hot block is downgraded  */
111
111
 
112
112
  /* Statistics variables. These are reset in reset_key_cache_counters(). */
113
113
  ulong global_blocks_changed;  /* number of currently dirty blocks         */