aboutsummaryrefslogtreecommitdiff
path: root/include/EASTL/internal/atomic/compiler/compiler_store.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/EASTL/internal/atomic/compiler/compiler_store.h')
-rw-r--r--include/EASTL/internal/atomic/compiler/compiler_store.h113
1 files changed, 0 insertions, 113 deletions
diff --git a/include/EASTL/internal/atomic/compiler/compiler_store.h b/include/EASTL/internal/atomic/compiler/compiler_store.h
deleted file mode 100644
index 1a553e2..0000000
--- a/include/EASTL/internal/atomic/compiler/compiler_store.h
+++ /dev/null
@@ -1,113 +0,0 @@
-/////////////////////////////////////////////////////////////////////////////////
-// Copyright (c) Electronic Arts Inc. All rights reserved.
-/////////////////////////////////////////////////////////////////////////////////
-
-
-#ifndef EASTL_ATOMIC_INTERNAL_COMPILER_STORE_H
-#define EASTL_ATOMIC_INTERNAL_COMPILER_STORE_H
-
-#if defined(EA_PRAGMA_ONCE_SUPPORTED)
- #pragma once
-#endif
-
-
-/////////////////////////////////////////////////////////////////////////////////
-//
-// void EASTL_COMPILER_ATOMIC_STORE_*_N(type, type * ptr, type val)
-//
-#if defined(EASTL_COMPILER_ATOMIC_STORE_RELAXED_8)
- #define EASTL_COMPILER_ATOMIC_STORE_RELAXED_8_AVAILABLE 1
-#else
- #define EASTL_COMPILER_ATOMIC_STORE_RELAXED_8_AVAILABLE 0
-#endif
-
-#if defined(EASTL_COMPILER_ATOMIC_STORE_RELEASE_8)
- #define EASTL_COMPILER_ATOMIC_STORE_RELEASE_8_AVAILABLE 1
-#else
- #define EASTL_COMPILER_ATOMIC_STORE_RELEASE_8_AVAILABLE 0
-#endif
-
-#if defined(EASTL_COMPILER_ATOMIC_STORE_SEQ_CST_8)
- #define EASTL_COMPILER_ATOMIC_STORE_SEQ_CST_8_AVAILABLE 1
-#else
- #define EASTL_COMPILER_ATOMIC_STORE_SEQ_CST_8_AVAILABLE 0
-#endif
-
-
-#if defined(EASTL_COMPILER_ATOMIC_STORE_RELAXED_16)
- #define EASTL_COMPILER_ATOMIC_STORE_RELAXED_16_AVAILABLE 1
-#else
- #define EASTL_COMPILER_ATOMIC_STORE_RELAXED_16_AVAILABLE 0
-#endif
-
-#if defined(EASTL_COMPILER_ATOMIC_STORE_RELEASE_16)
- #define EASTL_COMPILER_ATOMIC_STORE_RELEASE_16_AVAILABLE 1
-#else
- #define EASTL_COMPILER_ATOMIC_STORE_RELEASE_16_AVAILABLE 0
-#endif
-
-#if defined(EASTL_COMPILER_ATOMIC_STORE_SEQ_CST_16)
- #define EASTL_COMPILER_ATOMIC_STORE_SEQ_CST_16_AVAILABLE 1
-#else
- #define EASTL_COMPILER_ATOMIC_STORE_SEQ_CST_16_AVAILABLE 0
-#endif
-
-
-#if defined(EASTL_COMPILER_ATOMIC_STORE_RELAXED_32)
- #define EASTL_COMPILER_ATOMIC_STORE_RELAXED_32_AVAILABLE 1
-#else
- #define EASTL_COMPILER_ATOMIC_STORE_RELAXED_32_AVAILABLE 0
-#endif
-
-#if defined(EASTL_COMPILER_ATOMIC_STORE_RELEASE_32)
- #define EASTL_COMPILER_ATOMIC_STORE_RELEASE_32_AVAILABLE 1
-#else
- #define EASTL_COMPILER_ATOMIC_STORE_RELEASE_32_AVAILABLE 0
-#endif
-
-#if defined(EASTL_COMPILER_ATOMIC_STORE_SEQ_CST_32)
- #define EASTL_COMPILER_ATOMIC_STORE_SEQ_CST_32_AVAILABLE 1
-#else
- #define EASTL_COMPILER_ATOMIC_STORE_SEQ_CST_32_AVAILABLE 0
-#endif
-
-
-#if defined(EASTL_COMPILER_ATOMIC_STORE_RELAXED_64)
- #define EASTL_COMPILER_ATOMIC_STORE_RELAXED_64_AVAILABLE 1
-#else
- #define EASTL_COMPILER_ATOMIC_STORE_RELAXED_64_AVAILABLE 0
-#endif
-
-#if defined(EASTL_COMPILER_ATOMIC_STORE_RELEASE_64)
- #define EASTL_COMPILER_ATOMIC_STORE_RELEASE_64_AVAILABLE 1
-#else
- #define EASTL_COMPILER_ATOMIC_STORE_RELEASE_64_AVAILABLE 0
-#endif
-
-#if defined(EASTL_COMPILER_ATOMIC_STORE_SEQ_CST_64)
- #define EASTL_COMPILER_ATOMIC_STORE_SEQ_CST_64_AVAILABLE 1
-#else
- #define EASTL_COMPILER_ATOMIC_STORE_SEQ_CST_64_AVAILABLE 0
-#endif
-
-
-#if defined(EASTL_COMPILER_ATOMIC_STORE_RELAXED_128)
- #define EASTL_COMPILER_ATOMIC_STORE_RELAXED_128_AVAILABLE 1
-#else
- #define EASTL_COMPILER_ATOMIC_STORE_RELAXED_128_AVAILABLE 0
-#endif
-
-#if defined(EASTL_COMPILER_ATOMIC_STORE_RELEASE_128)
- #define EASTL_COMPILER_ATOMIC_STORE_RELEASE_128_AVAILABLE 1
-#else
- #define EASTL_COMPILER_ATOMIC_STORE_RELEASE_128_AVAILABLE 0
-#endif
-
-#if defined(EASTL_COMPILER_ATOMIC_STORE_SEQ_CST_128)
- #define EASTL_COMPILER_ATOMIC_STORE_SEQ_CST_128_AVAILABLE 1
-#else
- #define EASTL_COMPILER_ATOMIC_STORE_SEQ_CST_128_AVAILABLE 0
-#endif
-
-
-#endif /* EASTL_ATOMIC_INTERNAL_COMPILER_STORE_H */