1. 1d4a1ed Revert "Update aosp/master libcxx rebase to r263688" by Dan Albert · 8 years ago
  2. 219406e [libcxx] [test] Replace non-Standard "atomic_flag f(false);" with Standard "atomic_flag f;" by Eric Fiselier · 8 years ago
  3. 00f4a49 [libcxx] Allow use of <atomic> in C++03. Try 3. by Eric Fiselier · 9 years ago
  4. d539803 Fix uninitialized values and bad enum conversions found by UBSAN. by Eric Fiselier · 9 years ago
  5. a90c6dd Move test into test/std subdirectory. by Eric Fiselier · 10 years ago[Renamed from test/atomics/atomics.flag/atomic_flag_clear_explicit.pass.cpp]
  6. 8d86b2e Allow libc++ to be built on systems without POSIX threads by Jonathan Roelofs · 10 years ago
  7. b64f8b0 license change by Howard Hinnant · 14 years ago
  8. 611fdaf Still working on the basic design of <atomic>. I'm working towards a system by which the compiler only needs to define the strongest intrinsics it can. Weaker atomics in the library automatically try stronger and stronger variants, picking the weakest compiler intrinsic available. If no compiler intrinsics are available for a given operation, the library locks a mutex and does the job. Better documentation to follow... by Howard Hinnant · 14 years ago
  9. 79101ae [atomics.flag] completed. Initialization is not working on clang and can't be made to work without defaulted default constructors. by Howard Hinnant · 14 years ago