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

« back to all changes in this revision

Viewing changes to tools/perf/util/probe-event.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:
47
47
#include "session.h"
48
48
 
49
49
#define MAX_CMDLEN 256
50
 
#define MAX_PROBE_ARGS 128
51
50
#define PERFPROBE_GROUP "probe"
52
51
 
53
52
bool probe_event_dry_run;       /* Dry run flag */
201
200
        return 0;
202
201
}
203
202
 
204
 
#ifdef DWARF_SUPPORT
 
203
#ifdef HAVE_DWARF_SUPPORT
205
204
/* Open new debuginfo of given module */
206
205
static struct debuginfo *open_debuginfo(const char *module)
207
206
{
630
629
        return ret;
631
630
}
632
631
 
633
 
#else   /* !DWARF_SUPPORT */
 
632
#else   /* !HAVE_DWARF_SUPPORT */
634
633
 
635
634
static int kprobe_convert_to_perf_probe(struct probe_trace_point *tp,
636
635
                                        struct perf_probe_point *pp)