diff -r 554fb699af8c Doc/howto/instrumentation.rst --- a/Doc/howto/instrumentation.rst Tue Oct 18 16:04:40 2016 -0400 +++ b/Doc/howto/instrumentation.rst Wed Oct 19 01:05:42 2016 +0300 @@ -210,7 +210,7 @@ .. code-block:: c - probe process('python').mark("function__entry") { + probe process("python").mark("function__entry") { filename = user_string($arg1); funcname = user_string($arg2); lineno = $arg3; @@ -219,7 +219,7 @@ thread_indent(1), funcname, filename, lineno); } - probe process('python').mark("function__return") { + probe process("python").mark("function__return") { filename = user_string($arg1); funcname = user_string($arg2); lineno = $arg3; @@ -234,7 +234,7 @@ $ stap \ show-call-hierarchy.stp \ - -c ./python test.py + -c "./python test.py" The output looks like this:: @@ -259,11 +259,11 @@ libpython shared library, and the probe's dotted path needs to reflect this. For example, this line from the above example:: - probe process('python').mark("function__entry") { + probe process("python").mark("function__entry") { should instead read:: - probe process('python').library("libpython3.6dm.so.1.0").mark("function__entry") { + probe process("python").library("libpython3.6dm.so.1.0").mark("function__entry") { (assuming a debug build of CPython 3.6)