Re: [PATCH v2] pwdgrp.c: removed assert causing runtime issues

2021-03-18 Thread Joel Sherrill
On Thu, Mar 18, 2021 at 3:11 PM Chris Johns wrote: > On 19/3/21 6:19 am, Joel Sherrill wrote: > > On Thu, Mar 18, 2021 at 2:14 PM Gedare Bloom > > wrote: > > On Thu, Mar 18, 2021 at 11:40 AM Ryan Long > > wrote: > > > > > >

Re: [PATCH v2] pwdgrp.c: removed assert causing runtime issues

2021-03-18 Thread Chris Johns
On 19/3/21 6:19 am, Joel Sherrill wrote: > On Thu, Mar 18, 2021 at 2:14 PM Gedare Bloom > wrote: > On Thu, Mar 18, 2021 at 11:40 AM Ryan Long > wrote: > > > > Changed the _Assert_unused_variable_equals macro to just a (void) d

Re: [PATCH v2] pwdgrp.c: removed assert causing runtime issues

2021-03-18 Thread Gedare Bloom
; >> -Original Message- >> From: Gedare Bloom >> Sent: Thursday, March 18, 2021 2:14 PM >> To: Ryan Long >> Cc: devel@rtems.org >> Subject: Re: [PATCH v2] pwdgrp.c: removed assert causing runtime issues >> >> On Thu, Mar 18, 2021 at 11:40 AM

Re: [PATCH v2] pwdgrp.c: removed assert causing runtime issues

2021-03-18 Thread Joel Sherrill
> Sent: Thursday, March 18, 2021 2:14 PM > To: Ryan Long > Cc: devel@rtems.org > Subject: Re: [PATCH v2] pwdgrp.c: removed assert causing runtime issues > > On Thu, Mar 18, 2021 at 11:40 AM Ryan Long wrote: > > > > Changed the _Assert_unused_variable_equals macro

Re: [PATCH v2] pwdgrp.c: removed assert causing runtime issues

2021-03-18 Thread Joel Sherrill
On Thu, Mar 18, 2021 at 2:14 PM Gedare Bloom wrote: > On Thu, Mar 18, 2021 at 11:40 AM Ryan Long wrote: > > > > Changed the _Assert_unused_variable_equals macro to just a (void) due to > > /etc having already been created by the network stack initialization > > or an initial filesystem image. >

RE: [PATCH v2] pwdgrp.c: removed assert causing runtime issues

2021-03-18 Thread Ryan Long
When Joel and I looked at it, this was the only assert that prevented it from running. -Original Message- From: Gedare Bloom Sent: Thursday, March 18, 2021 2:14 PM To: Ryan Long Cc: devel@rtems.org Subject: Re: [PATCH v2] pwdgrp.c: removed assert causing runtime issues On Thu, Mar 18

Re: [PATCH v2] pwdgrp.c: removed assert causing runtime issues

2021-03-18 Thread Gedare Bloom
On Thu, Mar 18, 2021 at 11:40 AM Ryan Long wrote: > > Changed the _Assert_unused_variable_equals macro to just a (void) due to > /etc having already been created by the network stack initialization > or an initial filesystem image. > > Updates #4282 > --- > cpukit/libcsupport/src/pwdgrp.c | 9 +++

[PATCH v2] pwdgrp.c: removed assert causing runtime issues

2021-03-18 Thread Ryan Long
Changed the _Assert_unused_variable_equals macro to just a (void) due to /etc having already been created by the network stack initialization or an initial filesystem image. Updates #4282 --- cpukit/libcsupport/src/pwdgrp.c | 9 - 1 file changed, 4 insertions(+), 5 deletions(-) diff --gi