diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-05-07 19:26:10 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-05-07 19:26:10 -0400 |
commit | a007b4068d20af2d4488d54bf3ef2edbf47f2f06 (patch) | |
tree | ac10d2f24e5b5f09f3ae871f1cc00d26db54f805 /session.h | |
parent | 9204dcfbe16061f799068eeacff5dc68ad33e523 (diff) | |
parent | da3fe5fe9641e7c4cc6ae5c4a289ddbc020aca1a (diff) | |
download | systemtap-steved-a007b4068d20af2d4488d54bf3ef2edbf47f2f06.tar.gz systemtap-steved-a007b4068d20af2d4488d54bf3ef2edbf47f2f06.tar.xz systemtap-steved-a007b4068d20af2d4488d54bf3ef2edbf47f2f06.zip |
Merge commit 'origin/dwarfless' into pr6429-comp-unwindsyms
* commit 'origin/dwarfless':
The beginnings of a no-dwarf version of syscalls.stp. Selected
Added CPU REGISTERS and NUMBERED FUNCTION ARGUMENTS sections to
Replaced [u_]arg() with [u]int_arg(), [u]long_arg(), {s|u}32_arg(),
Added support for register(), u_register(), arg(), and u_arg() functions.
* testsuite/{semok,semko}/nodwf*.stp
PR 4311 - Function boundary tracing without debuginfo: Phase I
Diffstat (limited to 'session.h')
-rw-r--r-- | session.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -107,6 +107,12 @@ struct systemtap_session std::string cache_path; std::string hash_path; + // dwarfless operation + bool consult_symtab; + std::string kernel_symtab_path; + bool ignore_vmlinux; + bool ignore_dwarf; + // temporary directory for module builds etc. // hazardous - it is "rm -rf"'d at exit std::string tmpdir; |