diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | tapsets.cxx | 10 |
2 files changed, 6 insertions, 8 deletions
@@ -1,3 +1,7 @@ +2008-04-17 Josh Stone <joshua.i.stone@intel.com> + + * tapsets.cxx (build_blacklist): Fix regexps for atomics. + 2008-04-17 David Smith <dsmith@redhat.com> * tapsets.cxx (utrace_builder::build): Make sure that the PATH of diff --git a/tapsets.cxx b/tapsets.cxx index c17c8ff1..c4cfaa25 100644 --- a/tapsets.cxx +++ b/tapsets.cxx @@ -2464,14 +2464,8 @@ dwarf_query::build_blacklist() blfn += "|.*seq_.*lock.*"; // atomic functions - blfn += "|atomic_long*"; - blfn += "|atomic_add*"; - blfn += "|atomic_dec*"; - blfn += "|atomic_inc*"; - blfn += "|atomic_set*"; - blfn += "|atomic_read*"; - blfn += "|atomic_sub*"; - blfn += "|atomic64_*"; + blfn += "|atomic_.*"; + blfn += "|atomic64_.*"; // few other problematic cases blfn += "|get_bh"; |