summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/heapgetinfo.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-11-14 16:21:41 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-11-18 14:56:42 +0100
commit85b5264211dfc8b1d517c0fa383936938ba2b33f (patch)
treea99ea3e1cce5fb0513b19f11b6c7631bf1dd4f24 /cpukit/score/src/heapgetinfo.c
parenttestsuites: Add missing .scn files (diff)
downloadrtems-85b5264211dfc8b1d517c0fa383936938ba2b33f.tar.bz2
heapgetinfo: Free all delayed blocks
Diffstat (limited to 'cpukit/score/src/heapgetinfo.c')
-rw-r--r--cpukit/score/src/heapgetinfo.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/cpukit/score/src/heapgetinfo.c b/cpukit/score/src/heapgetinfo.c
index ded488b560..96036a4031 100644
--- a/cpukit/score/src/heapgetinfo.c
+++ b/cpukit/score/src/heapgetinfo.c
@@ -48,5 +48,6 @@ void _Heap_Get_information(
)
{
memset( the_info, 0, sizeof(*the_info) );
+ _Heap_Protection_free_all_delayed_blocks( the_heap );
_Heap_Iterate( the_heap, _Heap_Get_information_visitor, the_info );
}