diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2019-05-16 11:25:31 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2019-05-17 13:29:04 +0200 |
commit | cc2588579c3fbc133a7ca762fa213ca18b736551 (patch) | |
tree | 08d7d6ec8fd9d73ddd306eca95f9e0609b4d2903 /src/threadsafety.h | |
parent | a822a0e4f6317f98cde6f0d5abe952b4e8992ac9 (diff) |
Move LockAnnotation from threadsafety.h (imported code) to sync.h (our code)
Diffstat (limited to 'src/threadsafety.h')
-rw-r--r-- | src/threadsafety.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/threadsafety.h b/src/threadsafety.h index 33acddc65c..47e6b2ea38 100644 --- a/src/threadsafety.h +++ b/src/threadsafety.h @@ -54,15 +54,4 @@ #define ASSERT_EXCLUSIVE_LOCK(...) #endif // __GNUC__ -// Utility class for indicating to compiler thread analysis that a mutex is -// locked (when it couldn't be determined otherwise). -struct SCOPED_LOCKABLE LockAnnotation -{ - template <typename Mutex> - explicit LockAnnotation(Mutex& mutex) EXCLUSIVE_LOCK_FUNCTION(mutex) - { - } - ~LockAnnotation() UNLOCK_FUNCTION() {} -}; - #endif // BITCOIN_THREADSAFETY_H |