~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_alloc.h

Merged in Eric's whitespace cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
   along with this program; if not, write to the Free Software
14
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
 
/* 
 
16
/*
17
17
   Data structures for mysys/my_alloc.c (root memory allocator)
18
18
*/
19
19
 
47
47
  size_t min_malloc;
48
48
  size_t block_size;               /* initial block size */
49
49
  unsigned int block_num;          /* allocated blocks counter */
50
 
  /* 
51
 
     first free block in queue test counter (if it exceed 
 
50
  /*
 
51
     first free block in queue test counter (if it exceed
52
52
     MAX_BLOCK_USAGE_BEFORE_DROP block will be dropped in 'used' list)
53
53
  */
54
54
  unsigned int first_block_usage;