diff options
| author | Ben Woosley <[email protected]> | 2018-09-02 02:49:30 -0400 |
|---|---|---|
| committer | Ben Woosley <[email protected]> | 2018-09-02 02:49:30 -0400 |
| commit | c7f7fa467ec571d3b3fd7ae1d32429b74b18ad9c (patch) | |
| tree | 27154d592611f05cb5249929d199ccce9e4b9b55 /src | |
| parent | Merge #14122: Test rpc_help.py failed: Check whether ZMQ is enabled or not. (diff) | |
| download | discoin-c7f7fa467ec571d3b3fd7ae1d32429b74b18ad9c.tar.xz discoin-c7f7fa467ec571d3b3fd7ae1d32429b74b18ad9c.zip | |
Trivial: update clang thread-safety docs url
Diffstat (limited to 'src')
| -rw-r--r-- | src/threadsafety.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/threadsafety.h b/src/threadsafety.h index a2f45e5fc..47e6b2ea3 100644 --- a/src/threadsafety.h +++ b/src/threadsafety.h @@ -10,7 +10,7 @@ // TL;DR Add GUARDED_BY(mutex) to member variables. The others are // rarely necessary. Ex: int nFoo GUARDED_BY(cs_foo); // -// See http://clang.llvm.org/docs/LanguageExtensions.html#threadsafety +// See https://clang.llvm.org/docs/ThreadSafetyAnalysis.html // for documentation. The clang compiler can do advanced static analysis // of locking when given the -Wthread-safety option. #define LOCKABLE __attribute__((lockable)) |