diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-05-12 19:37:31 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-05-12 19:37:31 -0400 |
commit | 9f39274f44ddf885b311682f313a2dcafcdc9040 (patch) | |
tree | a5c407eac2af43edb27f5c36c06649487779666b /session.h | |
parent | 49f426d9fd471bbdabb0e7a25525d0884b7e8831 (diff) | |
parent | d1e750063b97a968cb3ae86afaa25646f32b4b71 (diff) | |
download | systemtap-steved-9f39274f44ddf885b311682f313a2dcafcdc9040.tar.gz systemtap-steved-9f39274f44ddf885b311682f313a2dcafcdc9040.tar.xz systemtap-steved-9f39274f44ddf885b311682f313a2dcafcdc9040.zip |
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
* 'master' of ssh://sources.redhat.com/git/systemtap:
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; |