my_malloc.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  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. #ifdef SAFEMALLOC /* We don't need SAFEMALLOC here */
  18. #undef SAFEMALLOC
  19. #endif
  20. #include "mysys_priv.h"
  21. #include "mysys_err.h"
  22. #include <m_string.h>
  23. /* My memory allocator */
  24. gptr my_malloc(unsigned int Size, myf MyFlags)
  25. {
  26.   gptr point;
  27.   DBUG_ENTER("my_malloc");
  28.   DBUG_PRINT("my",("Size: %u  MyFlags: %d",Size, MyFlags));
  29.   if (!Size)
  30.     Size=1; /* Safety */
  31.   if ((point = malloc(Size)) == NULL)
  32.   {
  33.     my_errno=errno;
  34.     if (MyFlags & MY_FAE)
  35.       error_handler_hook=fatal_error_handler_hook;
  36.     if (MyFlags & (MY_FAE+MY_WME))
  37.       my_error(EE_OUTOFMEMORY, MYF(ME_BELL+ME_WAITTANG),Size);
  38.     if (MyFlags & MY_FAE)
  39.       exit(1);
  40.   }
  41.   else if (MyFlags & MY_ZEROFILL)
  42.     bzero(point,Size);
  43.   DBUG_PRINT("exit",("ptr: %lx",point));
  44.   DBUG_RETURN(point);
  45. } /* my_malloc */
  46. /* Free memory allocated with my_malloc */
  47. /*ARGSUSED*/
  48. void my_no_flags_free(gptr ptr)
  49. {
  50.   DBUG_ENTER("my_free");
  51.   DBUG_PRINT("my",("ptr: %lx",ptr));
  52.   if (ptr)
  53.     free(ptr);
  54.   DBUG_VOID_RETURN;
  55. } /* my_free */
  56. /* malloc and copy */
  57. gptr my_memdup(const byte *from, uint length, myf MyFlags)
  58. {
  59.   gptr ptr;
  60.   if ((ptr=my_malloc(length,MyFlags)) != 0)
  61.     memcpy((byte*) ptr, (byte*) from,(size_t) length);
  62.   return(ptr);
  63. }
  64. my_string my_strdup(const char *from, myf MyFlags)
  65. {
  66.   gptr ptr;
  67.   uint length=(uint) strlen(from)+1;
  68.   if ((ptr=my_malloc(length,MyFlags)) != 0)
  69.     memcpy((byte*) ptr, (byte*) from,(size_t) length);
  70.   return((my_string) ptr);
  71. }