home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / sql / thr_malloc.cpp < prev    next >
C/C++ Source or Header  |  2000-09-12  |  2KB  |  86 lines

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program 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
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16.  
  17.  
  18. /* Mallocs for used in threads */
  19.  
  20. #include "mysql_priv.h"
  21.  
  22. extern "C" {
  23.   void sql_alloc_error_handler(void)
  24.   {
  25.     current_thd->fatal_error=1; /* purecov: inspected */
  26.     sql_print_error(ER(ER_OUT_OF_RESOURCES));
  27.   }
  28. }
  29.  
  30. void init_sql_alloc(MEM_ROOT *mem_root, uint block_size, uint pre_alloc)
  31. {
  32.   init_alloc_root(mem_root, block_size, pre_alloc);
  33.   mem_root->error_handler=sql_alloc_error_handler;
  34. }
  35.  
  36.  
  37. gptr sql_alloc(uint Size)
  38. {
  39.   MEM_ROOT *root=my_pthread_getspecific_ptr(MEM_ROOT*,THR_MALLOC);
  40.   char *ptr= (char*) alloc_root(root,Size);
  41.   return ptr;
  42. }
  43.  
  44.  
  45. gptr sql_calloc(uint size)
  46. {
  47.   gptr ptr;
  48.   if ((ptr=sql_alloc(size)))
  49.     bzero((char*) ptr,size);
  50.   return ptr;
  51. }
  52.  
  53.  
  54. char *sql_strdup(const char *str)
  55. {
  56.   uint len=(uint) strlen(str)+1;
  57.   char *pos;
  58.   if ((pos= (char*) sql_alloc(len)))
  59.     memcpy(pos,str,len);
  60.   return pos;
  61. }
  62.  
  63.  
  64. char *sql_strmake(const char *str,uint len)
  65. {
  66.   char *pos;
  67.   if ((pos= (char*) sql_alloc(len+1)))
  68.   {
  69.     memcpy(pos,str,len);
  70.     pos[len]=0;
  71.   }
  72.   return pos;
  73. }
  74.  
  75.  
  76. gptr sql_memdup(const void *ptr,uint len)
  77. {
  78.   char *pos;
  79.   if ((pos= (char*) sql_alloc(len)))
  80.     memcpy(pos,ptr,len);
  81.   return pos;
  82. }
  83.  
  84. void sql_element_free(void *ptr __attribute__((unused)))
  85. {} /* purecov: deadcode */
  86.