From 454bd97c931ab15beb23e42af96f5fb663194abb Mon Sep 17 00:00:00 2001 From: "Jose F. Martinez Pedraza" Date: Thu, 4 Aug 2022 14:04:41 -0400 Subject: [PATCH 1/2] Fix #1366, removed cast that hid the bug at compile time --- src/os/rtems/src/os-impl-timebase.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/os/rtems/src/os-impl-timebase.c b/src/os/rtems/src/os-impl-timebase.c index b275d7cc5..0d8662e8e 100644 --- a/src/os/rtems/src/os-impl-timebase.c +++ b/src/os/rtems/src/os-impl-timebase.c @@ -391,9 +391,9 @@ int32 OS_TimeBaseCreate_Impl(const OS_object_token_t *token) else { /* will place the task in 'ready for scheduling' state */ - rtems_sc = rtems_task_start(local->handler_task, /*rtems task id*/ - (rtems_task_entry)OS_TimeBase_CallbackThreadEntry, /* task entry point */ - (rtems_task_argument)r_name); /* passed argument */ + rtems_sc = rtems_task_start(local->handler_task, /* rtems task id */ + OS_TimeBase_CallbackThreadEntry, /* task entry point */ + (rtems_task_argument)r_name); /* passed argument */ if (rtems_sc != RTEMS_SUCCESSFUL) { From 19e017aaba770ff75f5b27ff266a92640fb5d89b Mon Sep 17 00:00:00 2001 From: Dylan Date: Thu, 16 Feb 2023 16:14:44 -0500 Subject: [PATCH 2/2] Bump to v6.0.0-rc4+dev195 --- CHANGELOG.md | 4 ++++ src/os/inc/osapi-version.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3342201a..2695f635d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## Development Build: v6.0.0-rc4+dev195 +- removed cast that hid bug at compile time +- See + ## Development Build: v6.0.0-rc4+dev191 - add doxygen for UT_ConfigureGenericStubReturnValue - See diff --git a/src/os/inc/osapi-version.h b/src/os/inc/osapi-version.h index e2ab65988..625852854 100644 --- a/src/os/inc/osapi-version.h +++ b/src/os/inc/osapi-version.h @@ -34,7 +34,7 @@ /* * Development Build Macro Definitions */ -#define OS_BUILD_NUMBER 191 +#define OS_BUILD_NUMBER 195 #define OS_BUILD_BASELINE "v6.0.0-rc4" /*