diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-04-28 14:01:50 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-04-28 14:01:50 -0400 |
commit | be1b875ec567a8947da5893c09ad71478a4b50a9 (patch) | |
tree | 4f34c1023a06fecd5e46d32ae86039806b0e3b82 /session.h | |
parent | f98a02cee66ba983187058e3b09a0a712fbe2277 (diff) | |
download | systemtap-steved-be1b875ec567a8947da5893c09ad71478a4b50a9.tar.gz systemtap-steved-be1b875ec567a8947da5893c09ad71478a4b50a9.tar.xz systemtap-steved-be1b875ec567a8947da5893c09ad71478a4b50a9.zip |
populate sess.unwindsym_modules set from dwarf probes
Diffstat (limited to 'session.h')
-rw-r--r-- | session.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ // -*- C++ -*- -// Copyright (C) 2005-2007 Red Hat Inc. +// Copyright (C) 2005-2008 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 @@ -157,7 +157,7 @@ struct systemtap_session Dwarf_Addr sym_stext; // List of libdwfl module names to extract symbol/unwind data for. - std::vector<std::string> unwindsym_modules; + std::set<std::string> unwindsym_modules; std::set<std::string> seen_errors; unsigned num_errors () { return seen_errors.size(); } |