summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/genericcpuatomic.h
diff options
context:
space:
mode:
authorWeiY <wei.a.yang@gmail.com>2013-07-15 23:31:14 +0800
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-17 13:07:34 +0200
commita04182c608d31470d3ea3ec8649e1dcab83376f1 (patch)
tree000816c21b09d0e3e8646864ce8773d7d95a3fe1 /cpukit/score/include/rtems/score/genericcpuatomic.h
parentstdatomic.h support check when configure (diff)
downloadrtems-a04182c608d31470d3ea3ec8649e1dcab83376f1.tar.bz2
clean up old atomic related files
Diffstat (limited to '')
-rw-r--r--cpukit/score/include/rtems/score/genericcpuatomic.h62
1 files changed, 0 insertions, 62 deletions
diff --git a/cpukit/score/include/rtems/score/genericcpuatomic.h b/cpukit/score/include/rtems/score/genericcpuatomic.h
deleted file mode 100644
index 2599d0d30d..0000000000
--- a/cpukit/score/include/rtems/score/genericcpuatomic.h
+++ /dev/null
@@ -1,62 +0,0 @@
-/**
- * @file rtems/score/genericcpuatomic.h
- *
- * This include file includes the general atomic data type
- * for all the architecture.
- */
-
-/*
- * COPYRIGHT (c) 2012 Deng Hengyi.
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- */
-
-#ifndef _RTEMS_SCORE_GENERAL_ATOMIC_CPU_H
-#define _RTEMS_SCORE_GEMERAL_ATOMIC_CPU_H
-
-#include <stdint.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/**
- * @defgroup RTEMS general atomic data type
- *
- */
-
-/**@{*/
-
-/**
- * @brief atomic operation unsigned integer type
- */
-typedef unsigned int Atomic_Int;
-
-/**
- * @brief atomic operation unsigned long integer type
- */
-typedef unsigned long Atomic_Long;
-
-/**
- * @brief atomic operation unsigned 32-bit integer type
- */
-typedef uint32_t Atomic_Int32;
-
-/**
- * @brief atomic operation unsigned 64-bit integer type
- */
-typedef uint64_t Atomic_Int64;
-
-/**
- * @brief atomic operation unsigned integer the size of a pointer type
- */
-typedef uintptr_t Atomic_Pointer;
-
-#ifdef __cplusplus
-}
-#endif
-
-/**@}*/
-#endif
-/* end of include file */