summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/stackchk
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-26 12:01:21 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-26 12:01:21 +0000
commit8de136b6c5bf4edb00c4257fece94d5beb7c80c3 (patch)
tree7b9d4a2f8b743e1720901b18bca7cc551879d1c4 /testsuites/libtests/stackchk
parent2009-08-24 Sebastian Huber <Sebastian.Huber@embedded-brains.de> (diff)
downloadrtems-8de136b6c5bf4edb00c4257fece94d5beb7c80c3.tar.bz2
2009-08-19 Sebastian Huber <Sebastian.Huber@embedded-brains.de>
* heapwalk/init.c, stackchk/blow.c: Update for heap API changes.
Diffstat (limited to 'testsuites/libtests/stackchk')
-rw-r--r--testsuites/libtests/stackchk/blow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/libtests/stackchk/blow.c b/testsuites/libtests/stackchk/blow.c
index ca9b4052cd..66daebf692 100644
--- a/testsuites/libtests/stackchk/blow.c
+++ b/testsuites/libtests/stackchk/blow.c
@@ -30,7 +30,7 @@ b();
area = (unsigned char *)_Thread_Executing->Start.Initial_stack.area;
- low = (volatile uint32_t *) (area + HEAP_OVERHEAD);
+ low = (volatile uint32_t *) (area + HEAP_LAST_BLOCK_OVERHEAD);
high = (volatile uint32_t *)
(area + _Thread_Executing->Start.Initial_stack.size - 16);