diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-07-22 16:14:02 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-07-22 16:14:02 -0400 |
commit | 7a24d42223ae98598c99bfb21437a00f13397d6d (patch) | |
tree | 9530b257f13194486b2b33be77dd39038ae92feb /translate.cxx | |
parent | 4cdbcfa7fe4a934dc0aabcdd5355d2dbd46821f7 (diff) | |
download | systemtap-steved-7a24d42223ae98598c99bfb21437a00f13397d6d.tar.gz systemtap-steved-7a24d42223ae98598c99bfb21437a00f13397d6d.tar.xz systemtap-steved-7a24d42223ae98598c99bfb21437a00f13397d6d.zip |
PR4225: parse process("path").function/statement probe points
Diffstat (limited to 'translate.cxx')
-rw-r--r-- | translate.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/translate.cxx b/translate.cxx index c62ba9fd..5956cba7 100644 --- a/translate.cxx +++ b/translate.cxx @@ -4507,7 +4507,7 @@ emit_symbol_data (systemtap_session& s) unwindsym_dump_context ctx = { s, kallsyms_out, 0, s.unwindsym_modules }; - // XXX: copied from tapsets.cxx, sadly + // XXX: copied from tapsets.cxx dwflpp::, sadly static char debuginfo_path_arr[] = "-:.debug:/usr/lib/debug:build"; static char *debuginfo_env_arr = getenv("SYSTEMTAP_DEBUGINFO_PATH"); @@ -4546,6 +4546,7 @@ emit_symbol_data (systemtap_session& s) // ---- step 2: process any user modules (files) listed + // XXX: see dwflpp::setup_user. static const Dwfl_Callbacks user_callbacks = { NULL, /* dwfl_linux_kernel_find_elf, */ |