probe-event.h (c4ff49209bcdc1ef709773f4833a341ac49a26cc) probe-event.h (2fd457a34525ea3bc609e377b46af759af8a7934)
1#ifndef _PROBE_EVENT_H
2#define _PROBE_EVENT_H
3
4#include <stdbool.h>
5#include "intlist.h"
6#include "strlist.h"
7#include "strfilter.h"
8
9/* Probe related configurations */
10struct probe_conf {
11 bool show_ext_vars;
12 bool show_location_range;
13 bool force_add;
14 bool no_inlines;
1#ifndef _PROBE_EVENT_H
2#define _PROBE_EVENT_H
3
4#include <stdbool.h>
5#include "intlist.h"
6#include "strlist.h"
7#include "strfilter.h"
8
9/* Probe related configurations */
10struct probe_conf {
11 bool show_ext_vars;
12 bool show_location_range;
13 bool force_add;
14 bool no_inlines;
15 bool cache;
15 int max_probes;
16};
17extern struct probe_conf probe_conf;
18extern bool probe_event_dry_run;
19
20/* kprobe-tracer and uprobe-tracer tracing point */
21struct probe_trace_point {
22 char *realname; /* function real name (if needed) */

--- 152 unchanged lines hidden ---
16 int max_probes;
17};
18extern struct probe_conf probe_conf;
19extern bool probe_event_dry_run;
20
21/* kprobe-tracer and uprobe-tracer tracing point */
22struct probe_trace_point {
23 char *realname; /* function real name (if needed) */

--- 152 unchanged lines hidden ---