git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211083
91177308-0d34-0410-b5e6-
96231b3b80d8
template<typename KeyT, typename MutexT>
struct LockMutex : ValueMapConfig<KeyT, MutexT> {
struct ExtraData {
- mutex_type *M;
+ MutexT *M;
bool *CalledRAUW;
bool *CalledDeleted;
};
*Data.CalledDeleted = true;
EXPECT_FALSE(Data.M->tryacquire()) << "Mutex should already be locked.";
}
- static mutex_type *getMutex(const ExtraData &Data) { return Data.M; }
+ static MutexT *getMutex(const ExtraData &Data) { return Data.M; }
};
#if LLVM_ENABLE_THREADS
TYPED_TEST(ValueMapTest, LocksMutex) {