atomicfwd_cxx.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #define _ATOMIC_MEMBER_ _M_i
00034
00035 _GLIBCXX_END_EXTERN_C
00036
00037 namespace __atomic0
00038 {
00039 template<typename _IntTp>
00040 struct __atomic_base;
00041
00042 struct atomic_flag;
00043 struct atomic_address;
00044 struct atomic_bool;
00045 }
00046
00047 namespace __atomic2
00048 {
00049 template<typename _IntTp>
00050 struct __atomic_base;
00051
00052 struct atomic_flag;
00053 struct atomic_address;
00054 struct atomic_bool;
00055 }
00056
00057 namespace __atomic1
00058 {
00059 using __atomic2::atomic_flag;
00060 using __atomic2::atomic_bool;
00061 using __atomic0::atomic_address;
00062 using __atomic0::__atomic_base;
00063 }
00064
00065
00066 typedef __atomic_base<char> atomic_char;
00067
00068
00069 typedef __atomic_base<signed char> atomic_schar;
00070
00071
00072 typedef __atomic_base<unsigned char> atomic_uchar;
00073
00074
00075 typedef __atomic_base<short> atomic_short;
00076
00077
00078 typedef __atomic_base<unsigned short> atomic_ushort;
00079
00080
00081 typedef __atomic_base<int> atomic_int;
00082
00083
00084 typedef __atomic_base<unsigned int> atomic_uint;
00085
00086
00087 typedef __atomic_base<long> atomic_long;
00088
00089
00090 typedef __atomic_base<unsigned long> atomic_ulong;
00091
00092
00093 typedef __atomic_base<long long> atomic_llong;
00094
00095
00096 typedef __atomic_base<unsigned long long> atomic_ullong;
00097
00098
00099 typedef __atomic_base<wchar_t> atomic_wchar_t;
00100
00101
00102 typedef __atomic_base<char16_t> atomic_char16_t;
00103
00104
00105 typedef __atomic_base<char32_t> atomic_char32_t;
00106
00107 template<typename _Tp>
00108 struct atomic;
00109 _GLIBCXX_BEGIN_EXTERN_C