summaryrefslogtreecommitdiffstats
path: root/hash.h
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2009-03-20 16:35:06 -0700
committerJosh Stone <jistone@redhat.com>2009-03-20 16:42:04 -0700
commitb278033a7e4632a414502b63ba51fcce36f44f94 (patch)
treecfb00de74d5af2138837a8c96f1814aaa11ae8b4 /hash.h
parenta1c66a0f3d8795fbcf49ce936dee3c5645f0bfa6 (diff)
downloadsystemtap-steved-b278033a7e4632a414502b63ba51fcce36f44f94.tar.gz
systemtap-steved-b278033a7e4632a414502b63ba51fcce36f44f94.tar.xz
systemtap-steved-b278033a7e4632a414502b63ba51fcce36f44f94.zip
Cache the tracepoint query results
To use tracepoints, we build a "tracequery" module that compiles debuginfo for all available tracepoints in the user's kernel. That's a bit of a cumbersome step to do during pass-2 though. This change adds tracequery caching so we only need to compile it once.
Diffstat (limited to 'hash.h')
-rw-r--r--hash.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/hash.h b/hash.h
index d386ad03..0fe95e27 100644
--- a/hash.h
+++ b/hash.h
@@ -35,5 +35,6 @@ public:
};
void find_hash (systemtap_session& s, const std::string& script);
+void find_tracequery_hash (systemtap_session& s);
/* vim: set sw=2 ts=8 cino=>4,n-2,{2,^-2,t0,(0,u0,w1,M1 : */