home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / mysys / my_malloc.c < prev    next >
C/C++ Source or Header  |  2000-08-31  |  2KB  |  85 lines

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17.  
  18. #ifdef SAFEMALLOC            /* We don't need SAFEMALLOC here */
  19. #undef SAFEMALLOC
  20. #endif
  21.  
  22. #include "mysys_priv.h"
  23. #include "mysys_err.h"
  24. #include <m_string.h>
  25.  
  26.     /* My memory allocator */
  27.  
  28. gptr my_malloc(unsigned int Size, myf MyFlags)
  29. {
  30.   gptr point;
  31.   DBUG_ENTER("my_malloc");
  32.   DBUG_PRINT("my",("Size: %u  MyFlags: %d",Size, MyFlags));
  33.  
  34.   if (!Size)
  35.     Size=1;                    /* Safety */
  36.   if ((point = malloc(Size)) == NULL)
  37.   {
  38.     my_errno=errno;
  39.     if (MyFlags & MY_FAE)
  40.       error_handler_hook=fatal_error_handler_hook;
  41.     if (MyFlags & (MY_FAE+MY_WME))
  42.       my_error(EE_OUTOFMEMORY, MYF(ME_BELL+ME_WAITTANG),Size);
  43.     if (MyFlags & MY_FAE)
  44.       exit(1);
  45.   }
  46.   else if (MyFlags & MY_ZEROFILL)
  47.     bzero(point,Size);
  48.   DBUG_PRINT("exit",("ptr: %lx",point));
  49.   DBUG_RETURN(point);
  50. } /* my_malloc */
  51.  
  52.  
  53.     /* Free memory allocated with my_malloc */
  54.     /*ARGSUSED*/
  55.  
  56. void my_no_flags_free(gptr ptr)
  57. {
  58.   DBUG_ENTER("my_free");
  59.   DBUG_PRINT("my",("ptr: %lx",ptr));
  60.   if (ptr)
  61.     free(ptr);
  62.   DBUG_VOID_RETURN;
  63. } /* my_free */
  64.  
  65.  
  66.     /* malloc and copy */
  67.  
  68. gptr my_memdup(const byte *from, uint length, myf MyFlags)
  69. {
  70.   gptr ptr;
  71.   if ((ptr=my_malloc(length,MyFlags)) != 0)
  72.     memcpy((byte*) ptr, (byte*) from,(size_t) length);
  73.   return(ptr);
  74. }
  75.  
  76.  
  77. my_string my_strdup(const char *from, myf MyFlags)
  78. {
  79.   gptr ptr;
  80.   uint length=(uint) strlen(from)+1;
  81.   if ((ptr=my_malloc(length,MyFlags)) != 0)
  82.     memcpy((byte*) ptr, (byte*) from,(size_t) length);
  83.   return((my_string) ptr);
  84. }
  85.