1. 21 Jun, 2018 2 commits
  2. 20 Jun, 2018 2 commits
  3. 19 Jun, 2018 5 commits
  4. 18 Jun, 2018 3 commits
  5. 13 Jun, 2018 2 commits
  6. 12 Jun, 2018 6 commits
  7. 11 Jun, 2018 4 commits
  8. 10 Jun, 2018 1 commit
  9. 07 Jun, 2018 1 commit
  10. 06 Jun, 2018 1 commit
  11. 05 Jun, 2018 1 commit
  12. 04 Jun, 2018 3 commits
  13. 03 Jun, 2018 2 commits
  14. 02 Jun, 2018 1 commit
  15. 01 Jun, 2018 3 commits
  16. 31 May, 2018 2 commits
  17. 30 May, 2018 1 commit
    • Adam Cozzette's avatar
      Added Clang thread-safety annotations in mutex.h · adc40869
      Adam Cozzette authored
      For Clang's thread safety analysis (-Wthread-safety) to pass without warnings,
      we need to annotate WrappedMutex to indicate that Lock() acquires the lock and
      Unlock() releases it. This CL adds the annotations and guards them with an
      ifdef to make sure they're a no-op on compilers other than Clang.
      
      This is a cherry-pick of a change I already made to the Google-internal
      codebase.
      adc40869