Re: [PATCH v2 2/2] libbsp/arm: Fix the local interrupt mask disable/enable calls.

2016-08-16 Thread Pavel Pisa
Hello Chris and Sebastian, On Tuesday 16 of August 2016 07:55:57 Sebastian Huber wrote: > On 16/08/16 07:45, Chris Johns wrote: > > --- > > c/src/lib/libbsp/arm/shared/arm-cp15-set-ttb-entries.c | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/c/src/lib/libbsp/

undefined left-shift of negative integer

2016-08-16 Thread Gedare Bloom
I stumbled across some lurking undefined behavior. In score/status.h:81 we have STATUS_BUILD( STATUS_CLASSIC_SUCCESSFUL, PTHREAD_BARRIER_SERIAL_THREAD ) where PTHREAD_BARRIER_SERIAL_THREAD is defined to -1. This causes ( -1 ) << 8 which is undefined behavior. ___

[PATCH 0/3] POSIX Shared Memory Objects

2016-08-16 Thread Gedare Bloom
These patches start to add support for POSIX Shared Memory Objects, see http://pubs.opengroup.org/onlinepubs/9699919799/functions/shm_open.html This support aims to improve POSIX compliance. The approach taken is to use the existing score Object as the basis for each shm object, where the Object.N

Re: [PATCH 0/3] POSIX Shared Memory Objects

2016-08-16 Thread Chris Johns
On 17/08/2016 06:48, Gedare Bloom wrote: These patches start to add support for POSIX Shared Memory Objects, see http://pubs.opengroup.org/onlinepubs/9699919799/functions/shm_open.html This support aims to improve POSIX compliance. I cannot see any patches. Chris __