* score/src/heapallocatealigned.c: Change break to continue to fix
	issue encountered on ARM. Fix indentation.
This commit is contained in:
Joel Sherrill
2009-08-18 16:15:16 +00:00
parent 7ca51e389d
commit 09794266c4
2 changed files with 17 additions and 11 deletions

View File

@@ -1,3 +1,8 @@
2009-08-18 Sebastian Huber <Sebastian.Huber@embedded-brains.de>
* score/src/heapallocatealigned.c: Change break to continue to fix
issue encountered on ARM. Fix indentation.
2009-08-18 Joel Sherrill <joel.sherrill@OARcorp.com>
* rtems/src/timerreset.c: Rework to ease analysis.

View File

@@ -214,7 +214,7 @@ void *_Heap_Allocate_aligned(
_Heap_Align_up_uptr(&aligned_user_addr, alignment);
if (aligned_user_addr - user_addr >= page_size) {
/* No, we can't use the block */
goto exit_point;
continue;
}
}
}
@@ -235,6 +235,7 @@ void *_Heap_Allocate_aligned(
aligned_user_addr, size);
user_ptr = (void*)aligned_user_addr;
break;
}
}