/
usr
/
share
/
systemtap
/
runtime
/
/usr/share/systemtap/runtime
mkdir
upload
Name
Size
Mode
Actions
dyninst/
-
0755
rm
linux/
-
0755
rm
softfloat/
-
0755
rm
transport/
-
0755
rm
unwind/
-
0755
rm
addr-map.c
523
0644
edit
dl
rm
addr-map.h
1156
0644
edit
dl
rm
alloc.c
498
0644
edit
dl
rm
arith.c
483
0644
edit
dl
rm
common_probe_context.h
6576
0644
edit
dl
rm
common_session_state.h
415
0644
edit
dl
rm
compatdefs.h
3682
0644
edit
dl
rm
copy.c
585
0644
edit
dl
rm
debug.h
485
0644
edit
dl
rm
io.c
508
0644
edit
dl
rm
k_syms.h
182
0644
edit
dl
rm
loc2c-runtime.h
17937
0644
edit
dl
rm
map-gen.c
25977
0644
edit
dl
rm
map-stat.c
3589
0644
edit
dl
rm
map.c
14660
0644
edit
dl
rm
map.h
5918
0644
edit
dl
rm
mempool.c
2644
0644
edit
dl
rm
namespaces.h
487
0644
edit
dl
rm
pmap-gen.c
8710
0644
edit
dl
rm
print.c
486
0644
edit
dl
rm
print.h
872
0644
edit
dl
rm
print_flush.c
3073
0644
edit
dl
rm
probe_lock.h
498
0644
edit
dl
rm
procfs-probes.c
4673
0644
edit
dl
rm
procfs-probes.h
674
0644
edit
dl
rm
procfs.c
4021
0644
edit
dl
rm
proc_fs_compatibility.h
2316
0644
edit
dl
rm
ptrace_compatibility.h
1512
0644
edit
dl
rm
regs.c
4280
0644
edit
dl
rm
regs.h
2352
0644
edit
dl
rm
runtime.h
928
0644
edit
dl
rm
runtime_context.h
669
0644
edit
dl
rm
runtime_defines.h
3582
0644
edit
dl
rm
softfloat.c
77159
0644
edit
dl
rm
softfloat.h
5125
0644
edit
dl
rm
stack-arm.c
1688
0644
edit
dl
rm
stack-ia64.c
1083
0644
edit
dl
rm
stack-mips.c
125
0644
edit
dl
rm
stack-s390.c
2362
0644
edit
dl
rm
stack.c
21790
0644
edit
dl
rm
stat-common.c
8486
0644
edit
dl
rm
stat.c
7421
0644
edit
dl
rm
stat.h
1964
0644
edit
dl
rm
stp_helper_lock.h
3669
0644
edit
dl
rm
stp_string.c
8632
0644
edit
dl
rm
stp_string.h
598
0644
edit
dl
rm
stp_task_work.c
3511
0644
edit
dl
rm
stp_utrace.c
94735
0644
edit
dl
rm
stp_utrace.h
14010
0644
edit
dl
rm
sym.c
39757
0644
edit
dl
rm
sym.h
6539
0644
edit
dl
rm
syscall.h
17408
0644
edit
dl
rm
task_finder_vma.c
13290
0644
edit
dl
rm
time.c
14887
0644
edit
dl
rm
timer.c
481
0644
edit
dl
rm
timer.h
482
0644
edit
dl
rm
uidgid_compatibility.h
603
0644
edit
dl
rm
unwind.c
47890
0644
edit
dl
rm
utrace_compatibility.h
3148
0644
edit
dl
rm
vma.c
9545
0644
edit
dl
rm
vsprintf.c
24058
0644
edit
dl
rm
vsprintf.h
1502
0644
edit
dl
rm
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 <asm/types.h> #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, };
Save
cmd:
run