Skip to content

Commit 281feee

Browse files
committed
Merge #14129: Trivial: update clang thread-safety docs url
c7f7fa4 Trivial: update clang thread-safety docs url (Ben Woosley) Pull request description: From the defunct http://clang.llvm.org/docs/LanguageExtensions.html#threadsafety to https://clang.llvm.org/docs/ThreadSafetyAnalysis.html Tree-SHA512: 5113c3933fccee7b45cace5d8dffa38b46ed9ad1422795d57843a20b276ed0e513bbf8d3d2bd28f55a46baf14a349871d7a635485785b93cb21baf8b8720c15a
2 parents 788b8a2 + c7f7fa4 commit 281feee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/threadsafety.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// TL;DR Add GUARDED_BY(mutex) to member variables. The others are
1111
// rarely necessary. Ex: int nFoo GUARDED_BY(cs_foo);
1212
//
13-
// See http://clang.llvm.org/docs/LanguageExtensions.html#threadsafety
13+
// See https://clang.llvm.org/docs/ThreadSafetyAnalysis.html
1414
// for documentation. The clang compiler can do advanced static analysis
1515
// of locking when given the -Wthread-safety option.
1616
#define LOCKABLE __attribute__((lockable))

0 commit comments

Comments
 (0)