mulalloc.c
上传用户:jmzj888
上传日期:2007-01-02
资源大小:220k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
  2.    This file is public domain and comes with NO WARRANTY of any kind */
  3. /* Malloc many pointers at the same time */
  4. /* format myFlags,ptr,length,ptr,length ... until null ptr */
  5. #include "mysys_priv.h"
  6. #include <stdarg.h>
  7. gptr my_multi_malloc(myf myFlags, ...)
  8. {
  9.   va_list args;
  10.   char **ptr,*start,*res;
  11.   uint tot_length,length;
  12.   DBUG_ENTER("my_multi_malloc");
  13.   va_start(args,myFlags);
  14.   tot_length=0;
  15.   while ((ptr=va_arg(args, char **)))
  16.   {
  17.     length=va_arg(args,uint);
  18.     tot_length+=ALIGN_SIZE(length);
  19.   }
  20.   va_end(args);
  21.   if (!(start=(char *) my_malloc(tot_length,myFlags)))
  22.     DBUG_RETURN(0); /* purecov: inspected */
  23.   va_start(args,myFlags);
  24.   res=start;
  25.   while ((ptr=va_arg(args, char **)))
  26.   {
  27.     *ptr=res;
  28.     length=va_arg(args,uint);
  29.     res+=ALIGN_SIZE(length);
  30.   }
  31.   va_end(args);
  32.   DBUG_RETURN((gptr) start);
  33. }