Re: [PATCH] Correct initial POSIX signals mask

2019-09-12 Thread Joel Sherrill
On Thu, Sep 12, 2019 at 8:06 AM Sebastian Huber wrote: > > On 11/09/2019 01:11, Joel Sherrill wrote: > > + if (!_System_state_Is_up(_System_state_Get())) { > > +if (_Objects_Get_API(created->Object.id) == OBJECTS_INTERNAL_API) { > > You have to add a couple of spaces to meet the coding

Re: [PATCH] Correct initial POSIX signals mask

2019-09-12 Thread Sebastian Huber
On 11/09/2019 01:11, Joel Sherrill wrote: + if (!_System_state_Is_up(_System_state_Get())) { +if (_Objects_Get_API(created->Object.id) == OBJECTS_INTERNAL_API) { You have to add a couple of spaces to meet the coding style. I would not use the system state, this could be a bit brittle on

[PATCH] Correct initial POSIX signals mask

2019-09-10 Thread Joel Sherrill
+ Modify POSIX thread create extension to ensure expected initial signal mask is provided to system threads, initial tasks and threads, and inheritied by tasks and threads. + Adds psxsignal07 to verify functionality when using a POSIX Initialization