~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_alloc.h

  • Committer: Monty Taylor
  • Date: 2008-12-06 07:22:02 UTC
  • mto: (656.1.7 devel) (660.1.5 codestyle)
  • mto: This revision was merged to the branch mainline in revision 665.
  • Revision ID: monty@inaugust.com-20081206072202-2g25o9doqr1l8euu
OOOh doggie. Got rid of my_alloca.

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;