summaryrefslogtreecommitdiffstats
path: root/buildrun.h
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2009-04-21 12:08:42 -0700
committerJosh Stone <jistone@redhat.com>2009-04-21 12:34:43 -0700
commitd90053e72a515371936e10bf83ecb822aec91b17 (patch)
tree4589b3f1e0cb79b47d7d02c0eb49ac97079713fc /buildrun.h
parent31a0ad65c838d0530b321c75c5b328828daa71ac (diff)
downloadsystemtap-steved-d90053e72a515371936e10bf83ecb822aec91b17.tar.gz
systemtap-steved-d90053e72a515371936e10bf83ecb822aec91b17.tar.xz
systemtap-steved-d90053e72a515371936e10bf83ecb822aec91b17.zip
Refine the @cast-with-header syntax
The special syntax to generate a module for type information is now: - "kernel<path/to/header.h>" to use the kernel's build environment - "<path/to/header.h>" to use no special build environment, and so use gcc's default parameters only (for user mode).
Diffstat (limited to 'buildrun.h')
-rw-r--r--buildrun.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/buildrun.h b/buildrun.h
index fb33b4c8..7fa4ccfc 100644
--- a/buildrun.h
+++ b/buildrun.h
@@ -14,9 +14,9 @@
int compile_pass (systemtap_session& s);
int run_pass (systemtap_session& s);
-int make_tracequery(systemtap_session& s, std::string& name, const std::vector<std::string>& extra_headers);
-int make_typequery_kmod(systemtap_session& s, const std::string& header, std::string& name);
-int make_typequery_umod(systemtap_session& s, const std::string& header, std::string& name);
+int make_tracequery(systemtap_session& s, std::string& name,
+ const std::vector<std::string>& extra_headers);
+int make_typequery(systemtap_session& s, std::string& module);
#endif // BUILDRUN_H