summaryrefslogblamecommitdiffstats
path: root/cpukit/score/src/pheapiterate.c
blob: 924667c807c27eb2ba93d9b9a5d1ff6ffc37f086 (plain) (tree)
1
2
3
4


        
                              














                                                                 
                                        

















                                              
/**
 * @file
 *
 * @ingroup RTEMSScoreProtHeap
 *
 * @brief _Heap_Iterate() implementation.
 */

/*
 * Copyright (c) 2011 embedded brains GmbH.  All rights reserved.
 *
 *  embedded brains GmbH
 *  Obere Lagerstr. 30
 *  82178 Puchheim
 *  Germany
 *  <rtems@embedded-brains.de>
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.org/license/LICENSE.
 */

#if HAVE_CONFIG_H
  #include "config.h"
#endif

#include <rtems/score/protectedheap.h>

void _Protected_heap_Iterate(
  Heap_Control *heap,
  Heap_Block_visitor visitor,
  void *visitor_arg
)
{
  _RTEMS_Lock_allocator();
  _Heap_Iterate( heap, visitor, visitor_arg );
  _RTEMS_Unlock_allocator();
}