Re: [PATCH] Upgrade to 5.0.0

2017-10-17 Thread Sebastian Huber
On 17/10/17 21:34, Chris Johns wrote: On 17/10/17 4:44 am, Sebastian Huber wrote: Tool name will be "rtems5", e.g. arm-rtems5-gcc. Why not rtems5.0 and then rtems5.1? We don't have different tool versions for bugfix releases, e.g there are no 4.11.0, 4.11.1, 4.11.2, ... tools. It is just 4.1

Re: [PATCH] Upgrade to 5.0.0

2017-10-17 Thread Chris Johns
On 17/10/17 4:44 am, Sebastian Huber wrote: > Tool name will be "rtems5", e.g. arm-rtems5-gcc. Why not rtems5.0 and then rtems5.1? Do we have the tool naming written up any where? > Next release will 5.1.0. Branch version after release will be 5.1.1. > Next master will be 6.0.0. I have added a

[PATCH] Upgrade to 5.0.0

2017-10-17 Thread Sebastian Huber
Tool name will be "rtems5", e.g. arm-rtems5-gcc. Next release will 5.1.0. Branch version after release will be 5.1.1. Next master will be 6.0.0. --- aclocal/version.m4| 4 ++-- c/src/aclocal/version.m4 | 4 ++-- cpukit/aclocal/version.m4 | 4 ++-- testsuites/aclocal/version.

[PATCH 1/3] posix: Move POSIX_API_Control::thread

2017-10-17 Thread Sebastian Huber
This member is only used by the sporadic server support. Update #2514. --- cpukit/posix/include/rtems/posix/threadsup.h | 6 +++--- cpukit/posix/src/pthread.c | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cpukit/posix/include/rtems/posix/threadsup.h b

[PATCH 2/3] posix: Remove POSIX_API_Control::schedparam

2017-10-17 Thread Sebastian Huber
Move sporadic server scheduler parameters to POSIX_API_Control::Sporadic. Remove redundant scheduler priority parameter. Update #2514. --- cpukit/posix/include/rtems/posix/pthreadattrimpl.h | 18 +++ cpukit/posix/include/rtems/posix/pthreadimpl.h | 4 ++-- cpukit/posix/include/r

[PATCH 3/3] posix: Simplify _POSIX_Threads_Create_extension()

2017-10-17 Thread Sebastian Huber
Move unblocked signals initialization to pthread_create(). Update #2514. --- cpukit/posix/src/pthread.c | 17 - cpukit/posix/src/pthreadcreate.c | 4 2 files changed, 4 insertions(+), 17 deletions(-) diff --git a/cpukit/posix/src/pthread.c b/cpukit/posix/src/pthread.c

[PATCH 2/2] bsps/arm: Remove DWT based clock.

2017-10-17 Thread Christian Mauderer
From: Christian Mauderer It seems that the DWT CYCCNT does not advance when the CPU waits on a WFI instruction. That leads to the effect that for example on the atsamv BSP a sleep(1) needs something in the range of a few minutes (depending on the configured systick). A debugger might disables so

[PATCH 1/2] tests: Add test for comparing clocks.

2017-10-17 Thread Christian Mauderer
From: Christian Mauderer This test compares the elapsed time on the wall clock with the one on the mono clock. --- testsuites/sptests/Makefile.am | 1 + testsuites/sptests/configure.ac| 1 + testsuites/sptests/sptimecounter04/Makefile.am | 19 +