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/
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.
___
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
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
__