/usr/share/systemtap/runtime
NameSizeModeActions
dyninst/-0755rm
linux/-0755rm
softfloat/-0755rm
transport/-0755rm
unwind/-0755rm
addr-map.c5230644editdlrm
addr-map.h11560644editdlrm
alloc.c4980644editdlrm
arith.c4830644editdlrm
common_probe_context.h65760644editdlrm
common_session_state.h4150644editdlrm
compatdefs.h36820644editdlrm
copy.c5850644editdlrm
debug.h4850644editdlrm
io.c5080644editdlrm
k_syms.h1820644editdlrm
loc2c-runtime.h179370644editdlrm
map-gen.c259770644editdlrm
map-stat.c35890644editdlrm
map.c146600644editdlrm
map.h59180644editdlrm
mempool.c26440644editdlrm
namespaces.h4870644editdlrm
pmap-gen.c87100644editdlrm
print.c4860644editdlrm
print.h8720644editdlrm
print_flush.c30730644editdlrm
probe_lock.h4980644editdlrm
procfs-probes.c46730644editdlrm
procfs-probes.h6740644editdlrm
procfs.c40210644editdlrm
proc_fs_compatibility.h23160644editdlrm
ptrace_compatibility.h15120644editdlrm
regs.c42800644editdlrm
regs.h23520644editdlrm
runtime.h9280644editdlrm
runtime_context.h6690644editdlrm
runtime_defines.h35820644editdlrm
softfloat.c771590644editdlrm
softfloat.h51250644editdlrm
stack-arm.c16880644editdlrm
stack-ia64.c10830644editdlrm
stack-mips.c1250644editdlrm
stack-s390.c23620644editdlrm
stack.c217900644editdlrm
stat-common.c84860644editdlrm
stat.c74210644editdlrm
stat.h19640644editdlrm
stp_helper_lock.h36690644editdlrm
stp_string.c86320644editdlrm
stp_string.h5980644editdlrm
stp_task_work.c35110644editdlrm
stp_utrace.c947350644editdlrm
stp_utrace.h140100644editdlrm
sym.c397570644editdlrm
sym.h65390644editdlrm
syscall.h174080644editdlrm
task_finder_vma.c132900644editdlrm
time.c148870644editdlrm
timer.c4810644editdlrm
timer.h4820644editdlrm
uidgid_compatibility.h6030644editdlrm
unwind.c478900644editdlrm
utrace_compatibility.h31480644editdlrm
vma.c95450644editdlrm
vsprintf.c240580644editdlrm
vsprintf.h15020644editdlrm
Edit: /usr/share/systemtap/runtime/runtime_defines.h (3582B)
/* Common runtime defines, not dependend on session variables. Included once at the top of the generated stap.c file by the translate.cxx translate_pass (). */ #if defined(__KERNEL__) #include "linux/runtime_defines.h" #elif defined(__DYNINST__) #include "dyninst/runtime_defines.h" #endif /* Strings are used for storing backtraces, they are larger on 64bit so raise the size on 64bit architectures. PR10486. */ #include #ifndef MAXSTRINGLEN #if BITS_PER_LONG == 32 #define MAXSTRINGLEN 256 #else #define MAXSTRINGLEN 512 #endif #endif typedef char string_t[MAXSTRINGLEN]; #if !defined(STAP_SUPPRESS_TIME_LIMITS_ENABLE) #ifndef MAXACTION #define MAXACTION 1000 #endif #ifndef MAXACTION_INTERRUPTIBLE #define MAXACTION_INTERRUPTIBLE (MAXACTION * 10) #endif #endif #ifndef TRYLOCKDELAY #define TRYLOCKDELAY 10 /* microseconds */ #endif #ifndef MAXTRYLOCK #define MAXTRYLOCK 100 /* 1 millisecond total */ #endif #ifndef MAXMAPENTRIES #define MAXMAPENTRIES 2048 #endif #ifndef MAXERRORS #define MAXERRORS 0 #endif #ifndef MAXSKIPPED #define MAXSKIPPED 100 #endif #ifndef MINSTACKSPACE #define MINSTACKSPACE 1024 #endif #ifndef INTERRUPTIBLE #define INTERRUPTIBLE 1 #endif /* Overload processing. */ #ifndef STP_OVERLOAD_INTERVAL #define STP_OVERLOAD_INTERVAL 1000000000LL #endif #ifndef STP_OVERLOAD_THRESHOLD #define STP_OVERLOAD_THRESHOLD 500000000LL #endif /* We allow the user to completely turn overload processing off (as opposed to tuning it by overriding the values above) by running: stap -DSTP_NO_OVERLOAD {other options}. */ #if !defined(STP_NO_OVERLOAD) && !defined(STAP_NO_OVERLOAD) && !defined(STAP_SUPPRESS_TIME_LIMITS_ENABLE) #define STP_OVERLOAD #endif /* Used for CONTEXT probe_type. */ enum stp_probe_type { /* begin, end or never probe, triggered by stap module itself. */ stp_probe_type_been, /* user space instruction probe, trigger by utrace signal report. */ stp_probe_type_itrace, /* kernel marker probe, triggered by old marker_probe (removed in 2.6.32). */ stp_probe_type_marker, /* perf event probe, triggered by perf event counter. Note that although this is defined in tapset-perfmon.cxx, this has nothing to do with the (old and now removed) perfmon probes. */ stp_probe_type_perf, /* read or write of stap module proc file. Triggers on manipulation of the /proc/systemtap/MODNAME created through a procfs probe. */ stp_probe_type_procfs, /* timer probe, triggered by standard kernel init_timer interface. */ stp_probe_type_timer, /* high resolution timer probes, triggered by hrtimer firing. */ stp_probe_type_hrtimer, /* profile timer probe, triggered by kernel profile timer (either in kernel or user space). */ stp_probe_type_profile_timer, /* utrace thread start/end probe, triggered by utrace quiesce event for associated thread. */ stp_probe_type_utrace, /* utrace syscall enter/exit probe, triggered by utrace syscall event. */ stp_probe_type_utrace_syscall, /* kprobe event, triggered for dwarf or dwarfless kprobes. */ stp_probe_type_kprobe, /* kretprobe event, triggered for dwarf or dwarfless kretprobes. */ stp_probe_type_kretprobe, /* uprobe event, triggered by hitting a uprobe. */ stp_probe_type_uprobe, /* uretprobe event, triggered by hitting a uretprobe. */ stp_probe_type_uretprobe, /* hardware data watch break point, triggered by kernel data read/write. */ stp_probe_type_hwbkpt, /* kernel tracepoint probe, triggered by tracepoint event call. */ stp_probe_type_tracepoint, /* netfilter probe, triggered on network trafic */ stp_probe_type_netfilter, };