summaryrefslogtreecommitdiffstats
path: root/tapsets.cxx
diff options
context:
space:
mode:
authorJosh Stone <joshua.i.stone@intel.com>2008-04-17 11:15:55 -0700
committerJosh Stone <joshua.i.stone@intel.com>2008-04-17 11:17:32 -0700
commit2ca1271267aff13b5d45804657b57ae2ae406645 (patch)
tree478138fe10f95b95d3d775abe8b1bf516669d6ae /tapsets.cxx
parent0744f531bcddc81da1910bc2ddd2c8bf5c3ee3b8 (diff)
downloadsystemtap-steved-2ca1271267aff13b5d45804657b57ae2ae406645.tar.gz
systemtap-steved-2ca1271267aff13b5d45804657b57ae2ae406645.tar.xz
systemtap-steved-2ca1271267aff13b5d45804657b57ae2ae406645.zip
Fix the blacklist regexps for atomic functions
Diffstat (limited to 'tapsets.cxx')
-rw-r--r--tapsets.cxx10
1 files changed, 2 insertions, 8 deletions
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";