aboutsummaryrefslogtreecommitdiff
path: root/filter.c
AgeCommit message (Collapse)Author
2012-10-01filter_matches_library should loop all filters in a chainPetr Machata
At least that's what filter_matches_symbol does.
2012-09-25Extract enum callback_status to a separate modulePetr Machata
Document the interface, refer to this documentation at declarations of each_* functions.
2012-04-25Replace some uses of error with fprintfPetr Machata
error is not standard so it has no business being used in generic code. The linux-gnu back end is useful for android, and that doesn't have that interface either.
2012-04-23Filters should be in disjunctive relationshipPetr Machata
As soon as one symbol is matched by one full filter, it's accepted. Filters do not form intersection, but union. (At least I guess it's more intuitive this way).
2012-04-23filter_add_rule adds to the end of the chainPetr Machata
2012-04-19Fix filteringPetr Machata
2012-04-19Don't create PLT symbols that don't match filtering criteriaPetr Machata
- instead of creating them, keeping them around, and then just not enabling breakpoints for them
2012-04-19Fix memory bugsPetr Machata
2012-04-19Implement @MAIN, @/path/name -e selectors, make former default for nowPetr Machata
- the default might become "*" in future, but keep things more or less the same as they always were for now
2012-04-19Add glob.c/.h, filter.c/.hPetr Machata
- these should be useful when implementing filtering expressions