aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/test/alloc_SUITE_data/coalesce.c
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2012-11-15 12:31:59 +0100
committerSverker Eriksson <[email protected]>2012-11-15 18:20:48 +0100
commit51277f5dcf29a085dc478e560d3b92a438c8ae2f (patch)
tree9944e8bd0f1799c9741a715d01c7cda6a185010b /erts/emulator/test/alloc_SUITE_data/coalesce.c
parent9a763d644ca0e549f2733fd414aee9e77691b376 (diff)
downloadotp-51277f5dcf29a085dc478e560d3b92a438c8ae2f.tar.gz
otp-51277f5dcf29a085dc478e560d3b92a438c8ae2f.tar.bz2
otp-51277f5dcf29a085dc478e560d3b92a438c8ae2f.zip
erts: Refactor renaming a couple of macros in alloc_util
To get a consistent naming scheme where FBLK = Free block ABLK = Allocated block
Diffstat (limited to 'erts/emulator/test/alloc_SUITE_data/coalesce.c')
-rw-r--r--erts/emulator/test/alloc_SUITE_data/coalesce.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/test/alloc_SUITE_data/coalesce.c b/erts/emulator/test/alloc_SUITE_data/coalesce.c
index 6f35d3279b..a646b8327f 100644
--- a/erts/emulator/test/alloc_SUITE_data/coalesce.c
+++ b/erts/emulator/test/alloc_SUITE_data/coalesce.c
@@ -54,7 +54,7 @@ setup_sequence(TestCaseState_t *tcs, Allctr_t *a, Ulong bsz, int no,
no, bsz);
c = FIRST_MBC(a);
ASSERT(tcs, !NEXT_C(c));
- blk = MBC2FBLK(a, c);
+ blk = MBC_TO_FIRST_BLK(a, c);
ASSERT(tcs, IS_LAST_BLK(blk));
for (i = 0; i < no; i++)