Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-12-31 | scripted-diff: Bump copyright headers | MarcoFalke | |
-BEGIN VERIFY SCRIPT- ./contrib/devtools/copyright_header.py update ./ -END VERIFY SCRIPT- | |||
2020-08-18 | Drop deprecated and unused GUARDED_VAR and PT_GUARDED_VAR annotations | Hennadii Stepanov | |
2020-06-11 | Add means to handle negative capabilities in thread safety annotations | Hennadii Stepanov | |
2020-05-28 | refactor: Rename LockGuard to StdLockGuard for consistency with StdMutex | Hennadii Stepanov | |
2020-05-28 | Add thread safety annotated wrapper for std::mutex | Hennadii Stepanov | |
Co-authored-by: Anthony Towns <aj@erisian.com.au> | |||
2020-05-27 | logging: thread safety annotations | Anthony Towns | |
Adds LockGuard helper in threadsafety.h to replace lock_guard<mutex> when LOCK(Mutex) isn't available for use. | |||
2019-12-30 | scripted-diff: Bump copyright of files changed in 2019 | MarcoFalke | |
-BEGIN VERIFY SCRIPT- ./contrib/devtools/copyright_header.py update ./ -END VERIFY SCRIPT- | |||
2019-05-17 | Move LockAnnotation from threadsafety.h (imported code) to sync.h (our code) | practicalswift | |
2018-11-06 | Pass chain locked variables where needed | Russell Yanofsky | |
This commit does not change behavior. All it does is pass new function parameters. It is easiest to review this change with: git log -p -n1 -U0 --word-diff-regex=. | |||
2018-09-02 | Trivial: update clang thread-safety docs url | Ben Woosley | |
2018-07-27 | Update copyright headers to 2018 | DrahtBot | |
2018-07-25 | Annotate AssertLockHeld() with ASSERT_CAPABILITY() for thread safety analysis | Jesse Cohen | |
2016-01-05 | Bump copyright headers to 2014 | MarcoFalke | |
2014-12-19 | Added "Core" to copyright headers | sandakersmann | |
Github-Pull: #5494 Rebased-From: 15de949bb9277e442302bdd8dee299a8d6deee60 | |||
2014-12-16 | Remove references to X11 licence | Michael Ford | |
2014-09-19 | Apply clang-format on some infrequently-updated files | Pieter Wuille | |
2014-08-28 | add missing header end comments | Philip Kaufmann | |
- ensures a consistent usage in header files - also add a blank line after the copyright header where missing - also remove orphan new-lines at the end of some files | |||
2013-11-10 | Cleanup code using forward declarations. | Brandon Dahler | |
Use misc methods of avoiding unnecesary header includes. Replace int typedefs with int##_t from stdint.h. Replace PRI64[xdu] with PRI[xdu]64 from inttypes.h. Normalize QT_VERSION ifs where possible. Resolve some indirect dependencies as direct ones. Remove extern declarations from .cpp files. | |||
2012-11-11 | o Added threadsafety.h - a set of macros using the -Wthread-safety | Alexander Kjeldaas | |
feature in clang. These macros should primarily be used to document which locks protect a given piece of data. Secondary it can be used to document the set of held and excluded locks when entering a function. |