aboutsummaryrefslogtreecommitdiff
path: root/Examples/j_thread_example.txt
diff options
context:
space:
mode:
authorGeorge V. Neville-Neil <gnn@FreeBSD.org>2012-05-12 20:38:18 +0000
committerGeorge V. Neville-Neil <gnn@FreeBSD.org>2012-05-12 20:38:18 +0000
commit055173dba4a263acf10325a49eebf82915369ed2 (patch)
treeaec2772e8855e6dbaea6d8136ed0c47bcb825dee /Examples/j_thread_example.txt
parent87c8f7aa3a46118212b99f0d58b18aa93c06b02a (diff)
Notes
Diffstat (limited to 'Examples/j_thread_example.txt')
-rw-r--r--Examples/j_thread_example.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/Examples/j_thread_example.txt b/Examples/j_thread_example.txt
new file mode 100644
index 000000000000..3c5e83c6ee02
--- /dev/null
+++ b/Examples/j_thread_example.txt
@@ -0,0 +1,20 @@
+Following we see examples of the results of running j_thread.d.
+
+Here it is running while Code/Java/Func_abc is executing.
+
+# j_thread.d
+TIME PID/TID -- THREAD
+2007 Sep 24 04:01:34 311512/5 => Finalizer
+2007 Sep 24 04:01:34 311512/4 => Reference Handler
+2007 Sep 24 04:01:34 311512/7 => CompilerThread0
+2007 Sep 24 04:01:34 311512/6 => Signal Dispatcher
+2007 Sep 24 04:01:34 311512/8 => CompilerThread1
+2007 Sep 24 04:01:34 311512/9 => Low Memory Detector
+^C
+
+The fields of the output are, in order, Event time, Process ID/Thread ID,
+entry (=>) or exit (<=) and Thread name.
+
+In this example we see six different threads starting, but we do not see
+thread exit events as the JVM exited when the program stopped.
+