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

MySQL数据库

开发平台:

Visual C++

  1. /************************************************************************
  2. The memory management: the debug code. This is not an independent
  3. compilation module but is included in mem0mem.*.
  4. (c) 1994, 1995 Innobase Oy
  5. Created 6/8/1994 Heikki Tuuri
  6. *************************************************************************/
  7. #ifdef UNIV_MEM_DEBUG
  8. extern mutex_t mem_hash_mutex;
  9. extern ulint mem_current_allocated_memory;
  10. /**********************************************************************
  11. Initializes an allocated memory field in the debug version. */
  12. void
  13. mem_field_init(
  14. /*===========*/
  15. byte* buf, /* in: memory field */
  16. ulint n); /* in: how many bytes the user requested */
  17. /**********************************************************************
  18. Erases an allocated memory field in the debug version. */
  19. void
  20. mem_field_erase(
  21. /*============*/
  22. byte* buf, /* in: memory field */
  23. ulint n); /* in: how many bytes the user requested */
  24. /*******************************************************************
  25. Initializes a buffer to a random combination of hex BA and BE.
  26. Used to initialize allocated memory. */
  27. void
  28. mem_init_buf(
  29. /*=========*/
  30. byte*   buf,    /* in: pointer to buffer */
  31. ulint    n);     /* in: length of buffer */
  32. /*******************************************************************
  33. Initializes a buffer to a random combination of hex DE and AD.
  34. Used to erase freed memory.*/
  35. void
  36. mem_erase_buf(
  37. /*==========*/
  38. byte*   buf,    /* in: pointer to buffer */
  39. ulint    n);     /* in: length of buffer */
  40. /*******************************************************************
  41. Inserts a created memory heap to the hash table of
  42. current allocated memory heaps.
  43. Initializes the hash table when first called. */
  44. void
  45. mem_hash_insert(
  46. /*============*/
  47. mem_heap_t* heap,    /* in: the created heap */
  48. const char* file_name, /* in: file name of creation */
  49. ulint line);    /* in: line where created */
  50. /*******************************************************************
  51. Removes a memory heap (which is going to be freed by the caller)
  52. from the list of live memory heaps. Returns the size of the heap
  53. in terms of how much memory in bytes was allocated for the user of
  54. the heap (not the total space occupied by the heap).
  55. Also validates the heap.
  56. NOTE: This function does not free the storage occupied by the
  57. heap itself, only the node in the list of heaps. */
  58. void
  59. mem_hash_remove(
  60. /*============*/
  61. mem_heap_t* heap,    /* in: the heap to be freed */
  62. const char* file_name, /* in: file name of freeing */
  63. ulint line);    /* in: line where freed */
  64. void
  65. mem_field_header_set_len(byte* field, ulint len);
  66. ulint
  67. mem_field_header_get_len(byte* field);
  68. void
  69. mem_field_header_set_check(byte* field, ulint check);
  70. ulint
  71. mem_field_header_get_check(byte* field);
  72. void
  73. mem_field_trailer_set_check(byte* field, ulint check);
  74. ulint
  75. mem_field_trailer_get_check(byte* field);
  76. #endif /* UNIV_MEM_DEBUG */