]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
dtrace: add Documentation/dtrace_static_probes.txt
authorRandy Dunlap <randy.dunlap@oracle.com>
Tue, 28 Jun 2011 15:37:28 +0000 (08:37 -0700)
committerNick Alcock <nick.alcock@oracle.com>
Mon, 29 Jun 2015 21:39:53 +0000 (22:39 +0100)
This is a directory of all static probes in the kernel tree.

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Documentation/dtrace_static_probes.txt [new file with mode: 0644]

diff --git a/Documentation/dtrace_static_probes.txt b/Documentation/dtrace_static_probes.txt
new file mode 100644 (file)
index 0000000..921f68f
--- /dev/null
@@ -0,0 +1,39 @@
+DTRACE STATIC PROBE POINTS DIRECTORY
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+======================================================================
+MISCELLANEOUS:
+
+__handle_sysrq:
+       any time that a sysrq key is used or someone does:
+               echo key > /proc/sysrq-trigger
+
+check_hung_task:
+       when check_hung_task() finds a task that has been blocked
+       for more than /proc/sys/kernel/hung_task_timeout_secs seconds
+
+oom_kill_process:
+       when the oom-killer is invoked
+
+======================================================================
+MODULES:
+
+init_module:
+       when a loadable module load is attempted
+
+delete_module:
+       when a loadable module unload is attempted
+
+======================================================================
+SIGNALS:
+
+get_signal_to_deliver:
+       when a fatal signal occurs, usually causing a core dump
+
+handle_signal:
+       (x86 only) when an application handles a signal
+
+signal_fault:
+       (x86 only) when an application does not handle a signal
+
+### END ###