Bug 844755 - TSan: Blacklist js::gc::ChunkBitmap::isMarked. r=jonco

This commit is contained in:
Christian Holler 2013-10-22 13:27:23 +02:00
parent e86732f90b
commit 262cb03636

View File

@ -684,7 +684,7 @@ struct ChunkBitmap
GetGCThingMarkWordAndMask(cell, color, wordp, maskp);
}
MOZ_ALWAYS_INLINE bool isMarked(const Cell *cell, uint32_t color) {
MOZ_ALWAYS_INLINE MOZ_TSAN_BLACKLIST bool isMarked(const Cell *cell, uint32_t color) {
uintptr_t *word, mask;
getMarkWordAndMask(cell, color, &word, &mask);
return *word & mask;