summaryrefslogtreecommitdiffstats
path: root/buildrun.cxx
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2009-04-21 19:55:47 -0700
committerJosh Stone <jistone@redhat.com>2009-04-21 19:55:47 -0700
commit43e8f8d02ab60eb24b6d8cba1105ef92a080e5f1 (patch)
treeac5ccc177f1d45092aca9be2c77a0627884d0e83 /buildrun.cxx
parent8b31197b0c87947c37061c3a5493daa4e6927d56 (diff)
downloadsystemtap-steved-43e8f8d02ab60eb24b6d8cba1105ef92a080e5f1.tar.gz
systemtap-steved-43e8f8d02ab60eb24b6d8cba1105ef92a080e5f1.tar.xz
systemtap-steved-43e8f8d02ab60eb24b6d8cba1105ef92a080e5f1.zip
[tracepoints] Don't use TRACE_HEADER_MULTI_READ
At one point that macro was needed to get all of the tracepoints on the tip tree, but now it's causing us to get duplicate stapprobe_X definitions. AFAICS, we're now getting all tracepoints even without MULTI_READ, so I'm pulling that workaround out.
Diffstat (limited to 'buildrun.cxx')
-rw-r--r--buildrun.cxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/buildrun.cxx b/buildrun.cxx
index 6c51d0cd..41b593fa 100644
--- a/buildrun.cxx
+++ b/buildrun.cxx
@@ -390,10 +390,6 @@ make_tracequery(systemtap_session& s, string& name, const vector<string>& extra_
osrc << "#define DEFINE_TRACE(name, proto, args) \\" << endl;
osrc << " DECLARE_TRACE(name, TPPROTO(proto), TPARGS(args))" << endl;
- // some headers may have been pulled in already indirectly, so we need this
- // to ensure that they still use our definition
- osrc << "#define TRACE_HEADER_MULTI_READ 1" << endl;
-
// PR9993: Add extra headers to work around undeclared types in individual
// include/trace/foo.h files
for (unsigned z=0; z<extra_headers.size(); z++)