(root)/
attr-2.5.1/
libmisc/
high_water_alloc.c
       1  /*
       2    File: high_water_alloc.c
       3  
       4    Copyright (C) 2001-2002 Silicon Graphics, Inc.  All Rights Reserved.
       5  
       6    This program is free software; you can redistribute it and/or modify it under
       7    the terms of the GNU Lesser General Public License as published by the
       8    Free Software Foundation; either version 2.1 of the License, or (at
       9    your option) any later version.
      10  
      11    This program is distributed in the hope that it will be useful, but WITHOUT
      12    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
      13    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
      14    License for more details.
      15  
      16    You should have received a copy of the GNU Lesser General Public
      17    License along with this program.  If not, see <http://www.gnu.org/licenses/>.
      18  */
      19  
      20  #include "config.h"
      21  
      22  #include <stdio.h>
      23  #include <stdlib.h>
      24  #include "misc.h"
      25  
      26  int high_water_alloc(void **buf, size_t *bufsize, size_t newsize)
      27  {
      28  #define CHUNK_SIZE	256
      29  	/*
      30  	 * Goal here is to avoid unnecessary memory allocations by
      31  	 * using static buffers which only grow when necessary.
      32  	 * Size is increased in fixed size chunks (CHUNK_SIZE).
      33  	 */
      34  	if (*bufsize < newsize) {
      35  		void *newbuf;
      36  
      37  		newsize = (newsize + CHUNK_SIZE-1) & ~(CHUNK_SIZE-1);
      38  		newbuf = realloc(*buf, newsize);
      39  		if (!newbuf)
      40  			return 1;
      41  
      42  		*buf = newbuf;
      43  		*bufsize = newsize;
      44  	}
      45  	return 0;
      46  }