diff options
author | Howard Hinnant <hhinnant@apple.com> | 2010-10-18 20:39:07 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2010-10-18 20:39:07 +0000 |
commit | b2b5513dcc57af8adfabee6f19c5d63ba124c6f9 (patch) | |
tree | 6737753c1fbdaf88753d05f927e147c7cb1327ba /libcxx/www | |
parent | 0a5314fdb31a27403b6b6d9f2f6d6186a00f4192 (diff) | |
download | bcm5719-llvm-b2b5513dcc57af8adfabee6f19c5d63ba124c6f9.tar.gz bcm5719-llvm-b2b5513dcc57af8adfabee6f19c5d63ba124c6f9.zip |
Changing <atomic> to follow Design A
llvm-svn: 116742
Diffstat (limited to 'libcxx/www')
-rw-r--r-- | libcxx/www/atomic_design_a.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libcxx/www/atomic_design_a.html b/libcxx/www/atomic_design_a.html index f649b2b372f..0fc00436fb7 100644 --- a/libcxx/www/atomic_design_a.html +++ b/libcxx/www/atomic_design_a.html @@ -79,18 +79,18 @@ type __atomic_exchange(type* atomic_obj, type desired, int mem_ord); <font color="#C80000">// type must be trivially copyable</font> <font color="#C80000">// Behavior is defined for mem_success = [0 ... 5],</font> -<font color="#C80000">// mem_falure <= mem_success</font> -<font color="#C80000">// mem_falure != 3</font> -<font color="#C80000">// mem_falure != 4</font> +<font color="#C80000">// mem_failure <= mem_success</font> +<font color="#C80000">// mem_failure != 3</font> +<font color="#C80000">// mem_failure != 4</font> bool __atomic_compare_exchange_strong(type* atomic_obj, type* expected, type desired, int mem_success, int mem_failure); <font color="#C80000">// type must be trivially copyable</font> <font color="#C80000">// Behavior is defined for mem_success = [0 ... 5],</font> -<font color="#C80000">// mem_falure <= mem_success</font> -<font color="#C80000">// mem_falure != 3</font> -<font color="#C80000">// mem_falure != 4</font> +<font color="#C80000">// mem_failure <= mem_success</font> +<font color="#C80000">// mem_failure != 3</font> +<font color="#C80000">// mem_failure != 4</font> bool __atomic_compare_exchange_weak(type* atomic_obj, type* expected, type desired, int mem_success, int mem_failure); |