~mordred/drizzle/add-drizzle-namespace

« back to all changes in this revision

Viewing changes to mysys/my_alloc.h

  • Committer: Eric Herman
  • Date: 2008-12-06 19:42:46 UTC
  • mto: (656.1.6 devel)
  • mto: This revision was merged to the branch mainline in revision 665.
  • Revision ID: eric@mysql.com-20081206194246-5cdexuu81i366eek
removed trailing whitespace with simple script:

for file in $(find . -name "*.c") $(find . -name "*.cc") $(find . -name "*.h"); do ruby -pe 'gsub(/\s+$/, $/)' < $file > $file.out; mv $file.out $file; done;

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;