Skip to content

Commit

Permalink
Merge pull request #1431 from nasa/integration-candidate
Browse files Browse the repository at this point in the history
osal Integration candidate: Caelum-rc4+dev65
  • Loading branch information
dzbaker authored Dec 5, 2023
2 parents 0291622 + 2312ade commit edede38
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

##Development Build: v6.0.0-rc4+dev243
- Wrong memory alignment calculation
- See <https://github.com/nasa/osal/pull/1413>

## Development Build: v6.0.0-rc4+dev239
- Add RTEMS console and timebase posix task names
- See <https://github.com/nasa/osal/pull/1422>
Expand Down
2 changes: 1 addition & 1 deletion src/os/inc/osapi-version.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
/*
* Development Build Macro Definitions
*/
#define OS_BUILD_NUMBER 239
#define OS_BUILD_NUMBER 243
#define OS_BUILD_BASELINE "v6.0.0-rc4"

/*
Expand Down
2 changes: 1 addition & 1 deletion src/unit-test-coverage/ut-stubs/src/libc-stdlib-stubs.c
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ void *OCS_malloc(size_t sz)
return NULL;
}

NextSize = (NextSize + MPOOL_ALIGN - 1) & ~((size_t)MPOOL_ALIGN);
NextSize = (NextSize + MPOOL_ALIGN - 1) & ~((size_t)MPOOL_ALIGN - 1);
NextBlock = Rec->BlockAddr + MPOOL_ALIGN;
Rec->BlockAddr += NextSize;
Rec->Size += NextSize;
Expand Down

0 comments on commit edede38

Please sign in to comment.