mulalloc.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #include "mysys_priv.h"
  14. #include <stdarg.h>
  15. /*
  16.   Malloc many pointers at the same time
  17.   Only ptr1 can be free'd, and doing this will free all
  18.   the memory allocated. ptr2, etc all point inside big allocated
  19.   memory area.
  20.   SYNOPSIS
  21.     my_multi_malloc()
  22.       myFlags              Flags
  23. ptr1, length1      Multiple arguments terminated by null ptr
  24. ptr2, length2      ...
  25.         ...
  26. NULL
  27. */
  28. gptr my_multi_malloc(myf myFlags, ...)
  29. {
  30.   va_list args;
  31.   char **ptr,*start,*res;
  32.   uint tot_length,length;
  33.   DBUG_ENTER("my_multi_malloc");
  34.   va_start(args,myFlags);
  35.   tot_length=0;
  36.   while ((ptr=va_arg(args, char **)))
  37.   {
  38.     length=va_arg(args,uint);
  39.     tot_length+=ALIGN_SIZE(length);
  40.   }
  41.   va_end(args);
  42.   if (!(start=(char *) my_malloc(tot_length,myFlags)))
  43.     DBUG_RETURN(0); /* purecov: inspected */
  44.   va_start(args,myFlags);
  45.   res=start;
  46.   while ((ptr=va_arg(args, char **)))
  47.   {
  48.     *ptr=res;
  49.     length=va_arg(args,uint);
  50.     res+=ALIGN_SIZE(length);
  51.   }
  52.   va_end(args);
  53.   DBUG_RETURN((gptr) start);
  54. }