Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions tcmalloc/hinted_tracker_lists.h
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,15 @@ class HintedTrackerLists {
}

private:
#ifdef TCMALLOC_INTERNAL_LEGACY_LOCKING
TrackerList lists_[N];
size_t size_;
Bitmap<N> nonempty_;
#else
size_t size_;
Bitmap<N> nonempty_;
TrackerList lists_[N];
#endif
};

} // namespace tcmalloc_internal
Expand Down
Loading