Re: [PATCH] Refactor tree-loop-distribution for thread safety

2019-11-13 Thread Richard Biener
On Tue, Nov 12, 2019 at 2:31 PM Giuliano Belinassi wrote: > > Hi, Richard. > > On 11/12, Richard Biener wrote: > > On Sat, Nov 9, 2019 at 3:26 PM Giuliano Belinassi > > wrote: > > > > > > Hi all, > > > > > > This patch refactors tree-loop-distribution.c for thread safety without > > > use of C11

Re: [PATCH] Refactor tree-loop-distribution for thread safety

2019-11-12 Thread Giuliano Belinassi
Hi, Richard. On 11/12, Richard Biener wrote: > On Sat, Nov 9, 2019 at 3:26 PM Giuliano Belinassi > wrote: > > > > Hi all, > > > > This patch refactors tree-loop-distribution.c for thread safety without > > use of C11 __thread feature. All global variables were moved to a struct > > which is initi

Re: [PATCH] Refactor tree-loop-distribution for thread safety

2019-11-12 Thread Andrew Pinski
On Tue, Nov 12, 2019 at 1:16 AM Richard Biener wrote: > > On Sat, Nov 9, 2019 at 3:26 PM Giuliano Belinassi > wrote: > > > > Hi all, > > > > This patch refactors tree-loop-distribution.c for thread safety without > > use of C11 __thread feature. All global variables were moved to a struct > > whi

Re: [PATCH] Refactor tree-loop-distribution for thread safety

2019-11-12 Thread Richard Biener
On Sat, Nov 9, 2019 at 3:26 PM Giuliano Belinassi wrote: > > Hi all, > > This patch refactors tree-loop-distribution.c for thread safety without > use of C11 __thread feature. All global variables were moved to a struct > which is initialized at ::execute time. Thanks for working on this. I've b