Re: [PATCH 0/3] use C11 memory model GCC builtin atomics

2023-06-07 Thread David Marchand
On Mon, Mar 27, 2023 at 4:30 PM Tyler Retzlaff wrote: > > Replace the use of __sync__and_fetch and __sync_fetch_and_ atomics > with GCC C11 memory model __atomic builtins. > > This series contributes to converging on standard atomics in 23.11 but is > kept separate as there may be sensitivity to c

Re: [PATCH 0/3] use C11 memory model GCC builtin atomics

2023-06-07 Thread David Marchand
On Fri, Jun 2, 2023 at 6:18 AM Tyler Retzlaff wrote: > > On Wed, May 24, 2023 at 09:05:08AM -0700, Tyler Retzlaff wrote: > > On Wed, May 24, 2023 at 02:51:50PM +0200, David Marchand wrote: > > > On Mon, Mar 27, 2023 at 4:30 PM Tyler Retzlaff > > > wrote: > > > > > > > > Replace the use of __sync_

Re: [PATCH 0/3] use C11 memory model GCC builtin atomics

2023-06-01 Thread Tyler Retzlaff
On Wed, May 24, 2023 at 09:05:08AM -0700, Tyler Retzlaff wrote: > On Wed, May 24, 2023 at 02:51:50PM +0200, David Marchand wrote: > > On Mon, Mar 27, 2023 at 4:30 PM Tyler Retzlaff > > wrote: > > > > > > Replace the use of __sync__and_fetch and __sync_fetch_and_ atomics > > > with GCC C11 memory m

Re: [PATCH 0/3] use C11 memory model GCC builtin atomics

2023-05-24 Thread Tyler Retzlaff
On Wed, May 24, 2023 at 02:51:50PM +0200, David Marchand wrote: > On Mon, Mar 27, 2023 at 4:30 PM Tyler Retzlaff > wrote: > > > > Replace the use of __sync__and_fetch and __sync_fetch_and_ atomics > > with GCC C11 memory model __atomic builtins. > > > > This series contributes to converging on sta

Re: [PATCH 0/3] use C11 memory model GCC builtin atomics

2023-05-24 Thread David Marchand
On Mon, Mar 27, 2023 at 4:30 PM Tyler Retzlaff wrote: > > Replace the use of __sync__and_fetch and __sync_fetch_and_ atomics > with GCC C11 memory model __atomic builtins. > > This series contributes to converging on standard atomics in 23.11 but is > kept separate as there may be sensitivity to c

RE: [PATCH 0/3] use C11 memory model GCC builtin atomics

2023-03-27 Thread Morten Brørup
> From: Tyler Retzlaff [mailto:roret...@linux.microsoft.com] > Sent: Monday, 27 March 2023 16.30 > > Replace the use of __sync__and_fetch and __sync_fetch_and_ atomics > with GCC C11 memory model __atomic builtins. > > This series contributes to converging on standard atomics in 23.11 but is > ke