NdbMem.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #ifndef NDB_MEM_H
  14. #define NDB_MEM_H
  15. #include <ndb_global.h>
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. /**
  20.  * NdbMem_Create 
  21.  * Create and initalise internal data structures for Ndb
  22.  */
  23. void NdbMem_Create(void);
  24. /**
  25.  * NdbMem_Destroy
  26.  * Destroy all memory allocated by NdbMem
  27.  */
  28. void NdbMem_Destroy(void);
  29. /**
  30.  * NdbMem_Allocate
  31.  * Allocate size of memory
  32.  * @parameter size - size in bytes of memory to allocate
  33.  * @returns - pointer to memory if succesful otherwise NULL
  34.  */
  35. void* NdbMem_Allocate(size_t size);
  36. /**
  37.  * NdbMem_AllocateAlign
  38.  * Allocate size of memory
  39.  * @parameter size - size in bytes of memory to allocate
  40.  * @paramter alignment - byte boundary to align the data at
  41.  * @returns - pointer to memory if succesful otherwise NULL
  42.  */
  43. void* NdbMem_AllocateAlign(size_t size, size_t alignment);
  44. /** 
  45.  * NdbMem_Free
  46.  *  Free the memory that ptr points to 
  47.  *  @parameter ptr - pointer to the memory to free
  48.  */
  49. void NdbMem_Free(void* ptr);
  50. /**
  51.  * NdbMem_MemLockAll
  52.  *   Locks virtual memory in main memory
  53.  */
  54. int NdbMem_MemLockAll(void);
  55. /**
  56.  * NdbMem_MemUnlockAll
  57.  *   Unlocks virtual memory
  58.  */
  59. int NdbMem_MemUnlockAll(void);
  60. #ifdef __cplusplus
  61. }
  62. #endif
  63. #endif