00001 /** 00002 * @file populate.h 00003 * Fill up a profile_container from inverted profiles 00004 * 00005 * @remark Copyright 2003 OProfile authors 00006 * @remark Read the file COPYING 00007 * 00008 * @author John Levon 00009 * @author Philippe Elie 00010 */ 00011 00012 #ifndef POPULATE_H 00013 #define POPULATE_H 00014 00015 class profile_container; 00016 class inverted_profile; 00017 class string_filter; 00018 00019 00020 /// Load all sample file information for exactly one binary image. 00021 void 00022 populate_for_image(profile_container & samples, inverted_profile const & ip, 00023 string_filter const & symbol_filter, bool * has_debug_info); 00024 00025 #endif /* POPULATE_H */
1.6.1