Skip to content
This repository was archived by the owner on Sep 27, 2019. It is now read-only.

Commit b5c2780

Browse files
Modified the WriteSet to use concurrent_unordered_multiset
1 parent c40cd60 commit b5c2780

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/include/common/internal_types.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1210,7 +1210,7 @@ std::ostream &operator<<(std::ostream &os, const RWType &type);
12101210
typedef CuckooMap<ItemPointer, RWType, ItemPointerHasher, ItemPointerComparator>
12111211
ReadWriteSet;
12121212

1213-
typedef tbb::concurrent_unordered_multiset<ItemPointer, ItemPointerHasher, ItemPointerComparator> WriteSet;
1213+
typedef tbb::concurrent_unordered_set<ItemPointer, ItemPointerHasher, ItemPointerComparator> WriteSet;
12141214

12151215
// this enum is to identify why the version should be GC'd.
12161216
enum class GCVersionType {

0 commit comments

Comments
 (0)