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

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. /* Alloc a block of locked memory */
  18. #include "mysys_priv.h"
  19. #include "mysys_err.h"
  20. #include <my_list.h>
  21. #ifdef HAVE_MLOCK
  22. #include <sys/mman.h>
  23. struct st_mem_list
  24. {
  25.   LIST list;
  26.   byte *page;
  27.   uint size;
  28. };
  29. LIST *mem_list;
  30. byte *my_malloc_lock(uint size,myf MyFlags)
  31. {
  32.   int success;
  33.   uint pagesize=sysconf(_SC_PAGESIZE);
  34.   byte *ptr;
  35.   struct st_mem_list *element;
  36.   DBUG_ENTER("my_malloc_lock");
  37.   size=((size-1) & ~(pagesize-1))+pagesize;
  38.   if (!(ptr=memalign(pagesize,size)))
  39.   {
  40.     if (MyFlags & (MY_FAE+MY_WME))
  41.       my_error(EE_OUTOFMEMORY, MYF(ME_BELL+ME_WAITTANG),size);
  42.     DBUG_RETURN(0);
  43.   }
  44.   success = mlock((byte*) ptr,size);
  45.   if (success != 0 && geteuid() == 0)
  46.   {
  47.     DBUG_PRINT("warning",("Failed to lock memory. errno %dn",
  48.   errno));
  49.     fprintf(stderr, "Warning: Failed to lock memory. errno %dn",
  50.     errno);
  51.   }
  52.   else
  53.   {
  54.     /* Add block in a list for munlock */
  55.     if (!(element=(struct st_mem_list*) my_malloc(sizeof(*element),MyFlags)))
  56.     {
  57.       VOID(munlock((byte*) ptr,size));
  58.       free(ptr);
  59.       DBUG_RETURN(0);
  60.     }
  61.     element->list.data=(byte*) element;
  62.     element->page=ptr;
  63.     element->size=size;
  64.     pthread_mutex_lock(&THR_LOCK_malloc);
  65.     mem_list=list_add(mem_list,&element->list);
  66.     pthread_mutex_unlock(&THR_LOCK_malloc);
  67.   }
  68.   DBUG_RETURN(ptr);
  69. }
  70. void my_free_lock(byte *ptr,myf Myflags __attribute__((unused)))
  71. {
  72.   LIST *list;
  73.   struct st_mem_list *element=0;
  74.   pthread_mutex_lock(&THR_LOCK_malloc);
  75.   for (list=mem_list ; list ; list=list->next)
  76.   {
  77.     element=(struct st_mem_list*) list->data;
  78.     if (ptr == element->page)
  79.     { /* Found locked mem */
  80.       VOID(munlock((byte*) ptr,element->size));
  81.       mem_list=list_delete(mem_list,list);
  82.       break;
  83.     }
  84.   }
  85.   pthread_mutex_unlock(&THR_LOCK_malloc);
  86.   if (element)
  87.     my_free((gptr) element,MYF(0));
  88.   free(ptr); /* Free even if not locked */
  89. }
  90. #endif /* HAVE_MLOCK */