aboutsummaryrefslogtreecommitdiff
path: root/Examples/rb_objnew_example.txt
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/rb_objnew_example.txt')
-rw-r--r--Examples/rb_objnew_example.txt21
1 files changed, 21 insertions, 0 deletions
diff --git a/Examples/rb_objnew_example.txt b/Examples/rb_objnew_example.txt
new file mode 100644
index 000000000000..340ac9a8cf11
--- /dev/null
+++ b/Examples/rb_objnew_example.txt
@@ -0,0 +1,21 @@
+The following are examples of running rb_objnew.d.
+
+The rb_objnew.d script reports the new Ruby objects created (by filename and
+class) while the script is tracing. Here we see it running while
+Code/Ruby/func_abc.rb is executed.
+
+# rb_objnew.d
+Tracing... Hit Ctrl-C to end.
+^C
+ FILE CLASS COUNT
+ . NoMemoryError 1
+ . SystemStackError 1
+ . ThreadGroup 1
+ . fatal 1
+ . Object 3
+
+Since this is a simple example, not many objects were allocated - a few
+for the ruby engine, and three of class Object. No file was associated
+with these allocations, as they may have been caused by Ruby engine startup,
+and not necessarily lines of code in the example program.
+