Re: [libav-devel] [PATCH 02/13] Add a compat stdatomic.h implementation based on GCC atomics

2016-09-08 Thread Diego Biurrun
On Wed, Sep 07, 2016 at 02:59:39PM +0200, Anton Khirnov wrote: > --- /dev/null > +++ b/compat/atomics/gcc/stdatomic.h > @@ -0,0 +1,175 @@ > + > +#ifndef STDATOMIC_H > +#define STDATOMIC_H Use the full path as multiple inclusion guard, same as the other files below compat/, same for the other

[libav-devel] [PATCH 02/13] Add a compat stdatomic.h implementation based on GCC atomics

2016-09-07 Thread Anton Khirnov
Adapted from the code by Rémi Denis-Courmont from VLC --- compat/atomics/gcc/stdatomic.h | 175 + configure | 6 ++ 2 files changed, 181 insertions(+) create mode 100644 compat/atomics/gcc/stdatomic.h diff --git

Re: [libav-devel] [PATCH 02/13] Add a compat stdatomic.h implementation based on GCC atomics

2016-07-29 Thread Anton Khirnov
Quoting Anton Khirnov (2016-07-29 16:26:36) > Quoting James Almer (2016-07-29 16:20:48) > > On 7/29/2016 8:52 AM, Anton Khirnov wrote: > > > Adapted from the code by Rémi Denis-Courmont from VLC > > > --- > > > compat/atomics/gcc/stdatomic.h | 175 > > > +

Re: [libav-devel] [PATCH 02/13] Add a compat stdatomic.h implementation based on GCC atomics

2016-07-29 Thread James Almer
On 7/29/2016 11:26 AM, Anton Khirnov wrote: > Quoting James Almer (2016-07-29 16:20:48) >> On 7/29/2016 8:52 AM, Anton Khirnov wrote: >>> Adapted from the code by Rémi Denis-Courmont from VLC >>> --- >>> compat/atomics/gcc/stdatomic.h | 175 >>> + >>>

Re: [libav-devel] [PATCH 02/13] Add a compat stdatomic.h implementation based on GCC atomics

2016-07-29 Thread Anton Khirnov
Quoting James Almer (2016-07-29 16:20:48) > On 7/29/2016 8:52 AM, Anton Khirnov wrote: > > Adapted from the code by Rémi Denis-Courmont from VLC > > --- > > compat/atomics/gcc/stdatomic.h | 175 > > + > > configure | 6 ++ > > 2

Re: [libav-devel] [PATCH 02/13] Add a compat stdatomic.h implementation based on GCC atomics

2016-07-29 Thread James Almer
On 7/29/2016 8:52 AM, Anton Khirnov wrote: > Adapted from the code by Rémi Denis-Courmont from VLC > --- > compat/atomics/gcc/stdatomic.h | 175 > + > configure | 6 ++ > 2 files changed, 181 insertions(+) > create mode 100644

[libav-devel] [PATCH 02/13] Add a compat stdatomic.h implementation based on GCC atomics

2016-07-29 Thread Anton Khirnov
Adapted from the code by Rémi Denis-Courmont from VLC --- compat/atomics/gcc/stdatomic.h | 175 + configure | 6 ++ 2 files changed, 181 insertions(+) create mode 100644 compat/atomics/gcc/stdatomic.h diff --git