60 #ifndef FILTERSET_HPP_ 61 #define FILTERSET_HPP_ 73 excludeMatched = _excludeMatched;
76 excludeMatched =
true;
79 filters.push_back(toAdd);
82 bool matchedSoFar =
true;
83 vector<Filter>::iterator it;
84 for(it = filters.begin(); it != filters.end(); ++it) {
85 matchedSoFar &= (it->matches(proc, thread)^excludeMatched);
bool matches(int proc, int thread)
FilterSet(bool _excludeMatched)