source: rtems/cpukit/libcsupport/src/malloc_walk.c @ 7c411bd

4.104.115
Last change on this file since 7c411bd was 7c411bd, checked in by Joel Sherrill <joel.sherrill@…>, on 09/14/09 at 14:48:38

2009-09-14 Sebastian Huber <Sebastian.Huber@…>

  • score/src/wkspace.c: Removed work space area consistency checks.
  • libblock/include/rtems/ide_part_table.h: Functions are now deprecated.
  • libcsupport/include/rtems/libcsupport.h, libcsupport/src/calloc.c, libcsupport/src/malloc_boundary.c, libcsupport/src/malloc_initialize.c, libcsupport/src/malloc_report_statistics_plugin.c, libcsupport/src/malloc_statistics_helpers.c, libcsupport/src/malloc_walk.c, libcsupport/src/realloc.c, rtems/inline/rtems/rtems/region.inl: Update for heap API changes.

2009-09-14 Christian Mauderer <christian.mauderer@…>

  • libcsupport/src/vprintk.c: Fixed warnings. Print nothing in case the pointer to the string is NULL.
  • Property mode set to 100644
File size: 550 bytes
Line 
1/*
2 *  malloc_walk Implementation
3 *
4 *  COPYRIGHT (c) 1989-2007.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 *
11 *  $Id$
12 */
13
14#if HAVE_CONFIG_H
15#include "config.h"
16#endif
17
18#ifdef RTEMS_NEWLIB
19#include "malloc_p.h"
20
21#include <stdlib.h>
22
23void malloc_walk(size_t source, size_t printf_enabled)
24{
25  _Protected_heap_Walk( RTEMS_Malloc_Heap, (int) source, printf_enabled );
26}
27
28#endif
Note: See TracBrowser for help on using the repository browser.