Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
f88c8e0d
Commit
f88c8e0d
authored
Dec 02, 2016
by
James Almer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
compat/atomics: rename header guards
Fixes fate-source. Signed-off-by:
James Almer
<
jamrial@gmail.com
>
parent
b5a0b857
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
15 deletions
+15
-15
stdatomic.h
compat/atomics/dummy/stdatomic.h
+3
-3
stdatomic.h
compat/atomics/gcc/stdatomic.h
+3
-3
stdatomic.h
compat/atomics/pthread/stdatomic.h
+3
-3
stdatomic.h
compat/atomics/suncc/stdatomic.h
+3
-3
stdatomic.h
compat/atomics/win32/stdatomic.h
+3
-3
No files found.
compat/atomics/dummy/stdatomic.h
View file @
f88c8e0d
...
...
@@ -21,8 +21,8 @@
* Copyright (C) 2010 Rémi Denis-Courmont
*/
#ifndef
FFMPEG_
COMPAT_ATOMICS_DUMMY_STDATOMIC_H
#define
FFMPEG_
COMPAT_ATOMICS_DUMMY_STDATOMIC_H
#ifndef COMPAT_ATOMICS_DUMMY_STDATOMIC_H
#define COMPAT_ATOMICS_DUMMY_STDATOMIC_H
#include <stdint.h>
...
...
@@ -173,4 +173,4 @@ FETCH_MODIFY(and, &)
#define atomic_flag_clear_explicit(object, order) \
atomic_flag_clear(object)
#endif
/*
FFMPEG_
COMPAT_ATOMICS_DUMMY_STDATOMIC_H */
#endif
/* COMPAT_ATOMICS_DUMMY_STDATOMIC_H */
compat/atomics/gcc/stdatomic.h
View file @
f88c8e0d
...
...
@@ -21,8 +21,8 @@
* Copyright (C) 2010 Rémi Denis-Courmont
*/
#ifndef
FFMPEG_
COMPAT_ATOMICS_GCC_STDATOMIC_H
#define
FFMPEG_
COMPAT_ATOMICS_GCC_STDATOMIC_H
#ifndef COMPAT_ATOMICS_GCC_STDATOMIC_H
#define COMPAT_ATOMICS_GCC_STDATOMIC_H
#include <stddef.h>
#include <stdint.h>
...
...
@@ -170,4 +170,4 @@ do { \
#define atomic_flag_clear_explicit(object, order) \
atomic_flag_clear(object)
#endif
/*
FFMPEG_
COMPAT_ATOMICS_GCC_STDATOMIC_H */
#endif
/* COMPAT_ATOMICS_GCC_STDATOMIC_H */
compat/atomics/pthread/stdatomic.h
View file @
f88c8e0d
...
...
@@ -21,8 +21,8 @@
* Copyright (C) 2010 Rémi Denis-Courmont
*/
#ifndef
FFMPEG_
COMPAT_ATOMICS_PTHREAD_STDATOMIC_H
#define
FFMPEG_
COMPAT_ATOMICS_PTHREAD_STDATOMIC_H
#ifndef COMPAT_ATOMICS_PTHREAD_STDATOMIC_H
#define COMPAT_ATOMICS_PTHREAD_STDATOMIC_H
#include <stdint.h>
...
...
@@ -194,4 +194,4 @@ FETCH_MODIFY(and, &)
#define atomic_flag_clear_explicit(object, order) \
atomic_flag_clear(object)
#endif
/*
FFMPEG_
COMPAT_ATOMICS_PTHREAD_STDATOMIC_H */
#endif
/* COMPAT_ATOMICS_PTHREAD_STDATOMIC_H */
compat/atomics/suncc/stdatomic.h
View file @
f88c8e0d
...
...
@@ -16,8 +16,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef
FFMPEG_
COMPAT_ATOMICS_SUNCC_STDATOMIC_H
#define
FFMPEG_
COMPAT_ATOMICS_SUNCC_STDATOMIC_H
#ifndef COMPAT_ATOMICS_SUNCC_STDATOMIC_H
#define COMPAT_ATOMICS_SUNCC_STDATOMIC_H
#include <atomic.h>
#include <mbarrier.h>
...
...
@@ -183,4 +183,4 @@ static inline intptr_t atomic_fetch_and(intptr_t *object, intptr_t operand)
#define atomic_flag_clear_explicit(object, order) \
atomic_flag_clear(object)
#endif
/*
FFMPEG_
COMPAT_ATOMICS_SUNCC_STDATOMIC_H */
#endif
/* COMPAT_ATOMICS_SUNCC_STDATOMIC_H */
compat/atomics/win32/stdatomic.h
View file @
f88c8e0d
...
...
@@ -16,8 +16,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef
FFMPEG_
COMPAT_ATOMICS_WIN32_STDATOMIC_H
#define
FFMPEG_
COMPAT_ATOMICS_WIN32_STDATOMIC_H
#ifndef COMPAT_ATOMICS_WIN32_STDATOMIC_H
#define COMPAT_ATOMICS_WIN32_STDATOMIC_H
#include <stddef.h>
#include <stdint.h>
...
...
@@ -176,4 +176,4 @@ static inline int atomic_compare_exchange_strong(intptr_t *object, intptr_t *exp
#define atomic_flag_clear_explicit(object, order) \
atomic_flag_clear(object)
#endif
/*
FFMPEG_
COMPAT_ATOMICS_WIN32_STDATOMIC_H */
#endif
/* COMPAT_ATOMICS_WIN32_STDATOMIC_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment