diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-05-16 17:53:31 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-05-16 17:53:31 -0400 |
commit | 6561773f763d40c00a115b53493ecf2d4f425d0d (patch) | |
tree | ad1ce699145f8d065eb3a68e9d2e6f486ef9dc23 /elaborate.cxx | |
parent | 600db44c1ae1bb5b3b638dda1d8b25e14a332270 (diff) | |
download | systemtap-steved-6561773f763d40c00a115b53493ecf2d4f425d0d.tar.gz systemtap-steved-6561773f763d40c00a115b53493ecf2d4f425d0d.tar.xz systemtap-steved-6561773f763d40c00a115b53493ecf2d4f425d0d.zip |
PR5643: function caching for much faster syscall.* pass-2 processing
Diffstat (limited to 'elaborate.cxx')
-rw-r--r-- | elaborate.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/elaborate.cxx b/elaborate.cxx index 306baff1..0e454937 100644 --- a/elaborate.cxx +++ b/elaborate.cxx @@ -1188,7 +1188,10 @@ systemtap_session::systemtap_session (): hrtimer_derived_probes(0), perfmon_derived_probes(0), procfs_derived_probes(0), - op (0), up (0) + op (0), up (0), + sym_kprobes_text_start (0), + sym_kprobes_text_end (0), + sym_stext (0) { } |