blob: 0f13e09ac28d36ffc4f9f8986a8eeb7b28d8c6d0 [file] [log] [blame]
Mike Dodd8cfa7022010-11-17 11:12:26 -08001/**
2 * @file populate.h
3 * Fill up a profile_container from inverted profiles
4 *
5 * @remark Copyright 2003 OProfile authors
6 * @remark Read the file COPYING
7 *
8 * @author John Levon
9 * @author Philippe Elie
10 */
11
12#ifndef POPULATE_H
13#define POPULATE_H
14
15class profile_container;
16class inverted_profile;
17class string_filter;
18
19
20/// Load all sample file information for exactly one binary image.
21void
22populate_for_image(profile_container & samples, inverted_profile const & ip,
23 string_filter const & symbol_filter, bool * has_debug_info);
24
25#endif /* POPULATE_H */