Re: [PATCH v2] nptl: remove duplicate vfork() in libpthread

2015-12-23 Thread Vineet Gupta
On Tuesday 20 October 2015 01:40 PM, Vineet Gupta wrote: > On Monday 21 September 2015 09:28 AM, Vineet Gupta wrote: Assuming above is correct, you want those macros to be removed from nptl/*/**/vfork.S as well as libc/sysdeps/linux/*/vfork.S and >> preferably replace

Re: [PATCH v2] nptl: remove duplicate vfork() in libpthread

2015-10-20 Thread Vineet Gupta
On Monday 21 September 2015 09:28 AM, Vineet Gupta wrote: >>> Assuming above is correct, you want those macros to be removed from >>> nptl/*/**/vfork.S as well as libc/sysdeps/linux/*/vfork.S and >>> >> preferably replace >>> with a comment in case of latter set of files. >>>

Re: [PATCH v2] nptl: remove duplicate vfork() in libpthread

2015-09-20 Thread Vineet Gupta
On Thursday 17 September 2015 01:05 PM, Bernhard Reutner-Fischer wrote: > On September 17, 2015 12:09:17 AM GMT+02:00, Vineet Gupta > wrote: >> Hi Bernhard, >> >> >> On Tuesday 04 August 2015 01:42 AM, Vineet Gupta wrote: >>> On Friday 31 July 2015 12:23 AM, Bernhard

Re: [PATCH v2] nptl: remove duplicate vfork() in libpthread

2015-09-17 Thread Bernhard Reutner-Fischer
On September 17, 2015 12:09:17 AM GMT+02:00, Vineet Gupta wrote: >Hi Bernhard, > > >On Tuesday 04 August 2015 01:42 AM, Vineet Gupta wrote: >> On Friday 31 July 2015 12:23 AM, Bernhard Reutner-Fischer wrote: >>> On July 24, 2015 9:17:27 AM GMT+02:00, Vineet Gupta

Re: [PATCH v2] nptl: remove duplicate vfork() in libpthread

2015-09-16 Thread Vineet Gupta
Hi Bernhard, On Tuesday 04 August 2015 01:42 AM, Vineet Gupta wrote: > On Friday 31 July 2015 12:23 AM, Bernhard Reutner-Fischer wrote: >> On July 24, 2015 9:17:27 AM GMT+02:00, Vineet Gupta >> wrote: >>> On Friday 24 July 2015 09:26 AM, Bernhard Reutner-Fischer

Re: [PATCH v2] nptl: remove duplicate vfork() in libpthread

2015-08-04 Thread Vineet Gupta
On Friday 31 July 2015 12:23 AM, Bernhard Reutner-Fischer wrote: On July 24, 2015 9:17:27 AM GMT+02:00, Vineet Gupta vineet.gup...@synopsys.com wrote: On Friday 24 July 2015 09:26 AM, Bernhard Reutner-Fischer wrote: On July 22, 2015 5:05:34 PM GMT+02:00, Alexey Brodkin

Re: [PATCH v2] nptl: remove duplicate vfork() in libpthread

2015-07-30 Thread Bernhard Reutner-Fischer
On July 24, 2015 9:17:27 AM GMT+02:00, Vineet Gupta vineet.gup...@synopsys.com wrote: On Friday 24 July 2015 09:26 AM, Bernhard Reutner-Fischer wrote: On July 22, 2015 5:05:34 PM GMT+02:00, Alexey Brodkin alexey.brod...@synopsys.com wrote: Hi Bernard, This patch indeed fixes problems with

Re: [PATCH v2] nptl: remove duplicate vfork() in libpthread

2015-07-24 Thread Bernhard Reutner-Fischer
On July 22, 2015 5:05:34 PM GMT+02:00, Alexey Brodkin alexey.brod...@synopsys.com wrote: Hi Bernard, This patch indeed fixes problems with duplicate vfork in both libc and libpthread. I'm wondering if there's a chance for this patch to be applied still? Well, but it's wrong, isn't it.

Re: [PATCH v2] nptl: remove duplicate vfork() in libpthread

2015-07-24 Thread Vineet Gupta
On Friday 24 July 2015 09:26 AM, Bernhard Reutner-Fischer wrote: On July 22, 2015 5:05:34 PM GMT+02:00, Alexey Brodkin alexey.brod...@synopsys.com wrote: Hi Bernard, This patch indeed fixes problems with duplicate vfork in both libc and libpthread. I'm wondering if there's a chance for this

Re: [PATCH v2] nptl: remove duplicate vfork() in libpthread

2015-07-22 Thread Alexey Brodkin
Hi Bernard, On Mon, 2014-09-08 at 18:44 +0200, Waldemar Brodkorb wrote: Automatic patching via two oneliners by Bernhard Reutner-Fischer rep.dot@gmail.com: sed -i -e 's/[[:space:]]pt-vfork\.[csS]//' -e '/^ASFLAGS-pt-vfork\./d' $(git grep -l pt-vfork libpthread/nptl/sysdeps) find

Re: [PATCH v2] nptl: remove duplicate vfork() in libpthread

2014-11-16 Thread Yann E. MORIN
All, On 2014-09-08 18:44 +0200, Waldemar Brodkorb spake thusly: Automatic patching via two oneliners by Bernhard Reutner-Fischer rep.dot@gmail.com: sed -i -e 's/[[:space:]]pt-vfork\.[csS]//' -e '/^ASFLAGS-pt-vfork\./d' $(git grep -l pt-vfork libpthread/nptl/sysdeps) find

[PATCH v2] nptl: remove duplicate vfork() in libpthread

2014-09-08 Thread Waldemar Brodkorb
Automatic patching via two oneliners by Bernhard Reutner-Fischer rep.dot@gmail.com: sed -i -e 's/[[:space:]]pt-vfork\.[csS]//' -e '/^ASFLAGS-pt-vfork\./d' $(git grep -l pt-vfork libpthread/nptl/sysdeps) find libpthread/nptl -name *pt-vfork* -exec git rm {} \; Reported-By: Thomas Petazzoni