diff options
author | fche <fche> | 2007-02-09 13:45:49 +0000 |
---|---|---|
committer | fche <fche> | 2007-02-09 13:45:49 +0000 |
commit | 44f753868fd81e3b5c614acc3a4898d5c812a610 (patch) | |
tree | 459dbe716908765a6d0c36fcb71812d7a30eb2d1 /session.h | |
parent | 7d678473f851dadc2f5a4f6fe1a0bc7635750585 (diff) | |
download | systemtap-steved-44f753868fd81e3b5c614acc3a4898d5c812a610.tar.gz systemtap-steved-44f753868fd81e3b5c614acc3a4898d5c812a610.tar.xz systemtap-steved-44f753868fd81e3b5c614acc3a4898d5c812a610.zip |
2007-02-09 Frank Ch. Eigler <fche@elastic.org>
PR 3965
* configure.ac: Add --enable-prologue option.
* configure, config.in: Regenerated.
* session.h (prologue_searching): New field.
* main.cxx (main): Parse new "-P" option. Initialize based on
autoconf flag.
* stap.1.in, NEWS: Document it.
* hash.cxx (find_hash): Include it in computation.
* tapsets.cxx (query_func_info, query_cu): Respect it.
2007-02-09 Frank Ch. Eigler <fche@elastic.org>
* systemtap.base/prologue.*: New test case.
Diffstat (limited to 'session.h')
-rw-r--r-- | session.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ // -*- C++ -*- -// Copyright (C) 2005, 2006 Red Hat Inc. +// Copyright (C) 2005-2007 Red Hat Inc. // // This file is part of systemtap, and is free software. You can // redistribute it and/or modify it under the terms of the GNU General @@ -94,6 +94,7 @@ struct systemtap_session int buffer_size; unsigned perfmon; bool symtab; + bool prologue_searching; // Cache data bool use_cache; |