malloc_dbg.c 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /*
  2. * Copyright (C) 2009 by egnite GmbH
  3. * Copyright (C) 2001-2003 by egnite Software GmbH
  4. *
  5. * All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. *
  11. * 1. Redistributions of source code must retain the above copyright
  12. * notice, this list of conditions and the following disclaimer.
  13. * 2. Redistributions in binary form must reproduce the above copyright
  14. * notice, this list of conditions and the following disclaimer in the
  15. * documentation and/or other materials provided with the distribution.
  16. * 3. Neither the name of the copyright holders nor the names of
  17. * contributors may be used to endorse or promote products derived
  18. * from this software without specific prior written permission.
  19. *
  20. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  23. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  24. * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  25. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  26. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  27. * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  28. * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  29. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
  30. * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31. * SUCH DAMAGE.
  32. *
  33. * For additional information see http://www.ethernut.de/
  34. *
  35. */
  36. /*
  37. * $Id: malloc_dbg.c 4473 2012-08-20 15:12:45Z haraldkipp $
  38. */
  39. #include <sys/heap.h>
  40. #include <stdlib.h>
  41. #include <errno.h>
  42. #include <memdebug.h>
  43. /*!
  44. * \addtogroup xgHeap
  45. */
  46. /*@{*/
  47. #ifdef NUTDEBUG_HEAP
  48. /*!
  49. * \brief Allocate a block from heap memory.
  50. *
  51. * This function simply calls NutHeapAlloc(). It overrides the function
  52. * of the runtime library, when the application is linked with nutcrt or
  53. * nutcrtf.
  54. *
  55. * \param len Size of the requested memory block.
  56. *
  57. * \return Pointer to the allocated memory block if the
  58. * function is successful or NULL if the requested
  59. * amount of memory is not available.
  60. */
  61. void *dbg_malloc(size_t len, const char *file, int line)
  62. {
  63. void *p;
  64. if ((p = NutHeapDebugRootAlloc(&heapFreeList, len, file, line)) == NULL) {
  65. errno = ENOMEM;
  66. }
  67. return p;
  68. }
  69. /*!
  70. * \brief Return a block to heap memory.
  71. *
  72. * This function simply calls NutHeapFree(). It overrides the function
  73. * of the runtime library, when the application is linked with nutcrt or
  74. * nutcrtf.
  75. *
  76. * \param p Points to a memory block previously allocated
  77. * through a call to malloc().
  78. */
  79. void dbg_free(void *p, const char *file, int line)
  80. {
  81. NutHeapDebugRootFree(&heapFreeList, p, file, line);
  82. }
  83. #endif
  84. /*@}*/