probe-event.h (ddb2f58f9f8febaf817496a010130f108bb9a431) | probe-event.h (6cfd1f6805ca0b4a341794d67eb605089435f938) |
---|---|
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 force_add; | 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 force_add; |
13 bool no_inlines; |
|
13 int max_probes; 14}; 15extern struct probe_conf probe_conf; 16extern bool probe_event_dry_run; 17 18/* kprobe-tracer and uprobe-tracer tracing point */ 19struct probe_trace_point { 20 char *symbol; /* Base symbol */ --- 130 unchanged lines hidden --- | 14 int max_probes; 15}; 16extern struct probe_conf probe_conf; 17extern bool probe_event_dry_run; 18 19/* kprobe-tracer and uprobe-tracer tracing point */ 20struct probe_trace_point { 21 char *symbol; /* Base symbol */ --- 130 unchanged lines hidden --- |