aboutsummaryrefslogtreecommitdiff
path: root/include/EASTL/internal/atomic/compiler/compiler_cpu_pause.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/EASTL/internal/atomic/compiler/compiler_cpu_pause.h')
-rw-r--r--include/EASTL/internal/atomic/compiler/compiler_cpu_pause.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/include/EASTL/internal/atomic/compiler/compiler_cpu_pause.h b/include/EASTL/internal/atomic/compiler/compiler_cpu_pause.h
deleted file mode 100644
index 073b3fb..0000000
--- a/include/EASTL/internal/atomic/compiler/compiler_cpu_pause.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/////////////////////////////////////////////////////////////////////////////////
-// Copyright (c) Electronic Arts Inc. All rights reserved.
-/////////////////////////////////////////////////////////////////////////////////
-
-
-#ifndef EASTL_ATOMIC_INTERNAL_COMPILER_CPU_PAUSE_H
-#define EASTL_ATOMIC_INTERNAL_COMPILER_CPU_PAUSE_H
-
-#if defined(EA_PRAGMA_ONCE_SUPPORTED)
- #pragma once
-#endif
-
-
-/////////////////////////////////////////////////////////////////////////////////
-//
-// void EASTL_COMPILER_ATOMIC_CPU_PAUSE()
-//
-#if defined(EASTL_COMPILER_ATOMIC_CPU_PAUSE)
-
- #define EASTL_COMPILER_ATOMIC_CPU_PAUSE_AVAILABLE 1
-
-#else
-
- #define EASTL_COMPILER_ATOMIC_CPU_PAUSE() \
- ((void)0)
-
- #define EASTL_COMPILER_ATOMIC_CPU_PAUSE_AVAILABLE 1
-
-#endif
-
-
-#endif /* EASTL_ATOMIC_INTERNAL_COMPILER_CPU_PAUSE_H */