Re: [PATCH] Export _NCPUWORDS as variable for access from within the gnat-rts

2015-10-29 Thread Jan Sommer
Am Thursday 29 October 2015, 08:45:57 schrieb Joel Sherrill: > > On 10/29/2015 8:14 AM, Jan Sommer wrote: > > Hi, > > > > This patch will make the define _NCPUWORDS accessible for the ada runtime. > > It is necessary to model the pthread_attr_t implementation for rtems in > > Ada. > > We had a

Re: [PATCH] Export _NCPUWORDS as variable for access from within the gnat-rts

2015-10-29 Thread Joel Sherrill
Sorry. I am trying to use j...@rtems.org more and this actually bounced from the rtems devel mailing list. I have a habit to break. :( On 10/29/2015 8:14 AM, Jan Sommer wrote: Hi, This patch will make the define _NCPUWORDS accessible for the ada runtime. It is necessary to model the

Re: [PATCH] Export _NCPUWORDS as variable for access from within the gnat-rts

2015-10-29 Thread Joel Sherrill
On 10/29/2015 9:20 AM, Jan Sommer wrote: Am Thursday 29 October 2015, 08:45:57 schrieb Joel Sherrill: On 10/29/2015 8:14 AM, Jan Sommer wrote: Hi, This patch will make the define _NCPUWORDS accessible for the ada runtime. It is necessary to model the pthread_attr_t implementation for

[PATCH 1/2] Include stackimpl.h otherwise PTHREAD_MINIMUM_STACK_SIZE cannot be evaluated

2015-10-29 Thread Jan Sommer
--- cpukit/libgnat/adasupp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cpukit/libgnat/adasupp.c b/cpukit/libgnat/adasupp.c index a6e1f38..662b1cc 100644 --- a/cpukit/libgnat/adasupp.c +++ b/cpukit/libgnat/adasupp.c @@ -8,6 +8,7 @@ #include #include #include +#include /* *

Re: Problems passing rtems test sp37 on STM32F7x

2015-10-29 Thread Sebastian Huber
On the ARMv7-M port of RTEMS the interrupt level is not a part of the thread context. Thus, this test cannot work. The sp37 test is the only test that calls operating system services with interrupts disabled in thread context. In general this would be a major application bug. This is a known