~ubuntu-branches/debian/experimental/linux-tools/experimental

« back to all changes in this revision

Viewing changes to tools/perf/ui/gtk/annotate.c

  • Committer: Package Import Robot
  • Author(s): Ben Hutchings
  • Date: 2014-02-02 16:57:49 UTC
  • mfrom: (1.1.10) (0.1.21 sid)
  • Revision ID: package-import@ubuntu.com-20140202165749-tw94o9t1t0a8txk6
Tags: 3.13-1~exp2
Merge changes from sid up to 3.12.6-3

Show diffs side-by-side

added added

removed removed

Lines of Context:
154
154
        return 0;
155
155
}
156
156
 
157
 
int symbol__gtk_annotate(struct symbol *sym, struct map *map,
158
 
                         struct perf_evsel *evsel,
159
 
                         struct hist_browser_timer *hbt)
 
157
static int symbol__gtk_annotate(struct symbol *sym, struct map *map,
 
158
                                struct perf_evsel *evsel,
 
159
                                struct hist_browser_timer *hbt)
160
160
{
161
161
        GtkWidget *window;
162
162
        GtkWidget *notebook;
226
226
        return 0;
227
227
}
228
228
 
 
229
int hist_entry__gtk_annotate(struct hist_entry *he,
 
230
                             struct perf_evsel *evsel,
 
231
                             struct hist_browser_timer *hbt)
 
232
{
 
233
        return symbol__gtk_annotate(he->ms.sym, he->ms.map, evsel, hbt);
 
234
}
 
235
 
229
236
void perf_gtk__show_annotations(void)
230
237
{
231
238
        GtkWidget *window;