diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/.gitignore | 8 | ||||
-rw-r--r-- | doc/ChangeLog | 8 | ||||
-rw-r--r-- | doc/Makefile.in | 1 | ||||
-rw-r--r-- | doc/tutorial.tex | 6 |
4 files changed, 21 insertions, 2 deletions
diff --git a/doc/.gitignore b/doc/.gitignore new file mode 100644 index 00000000..d8a93302 --- /dev/null +++ b/doc/.gitignore @@ -0,0 +1,8 @@ +*.aux +*.glo +*.idx +*.log +*.lot +*.out +*.pdf +*.toc diff --git a/doc/ChangeLog b/doc/ChangeLog index e652078d..16a3c111 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,11 @@ +2008-04-24 Will Cohen <wcohen@redhat.com> + + * Makefile.in: Regenerated. + +2008-04-09 David Smith <dsmith@redhat.com> + + * .gitignore: New file. + 2008-03-25 Frank Ch. Eigler <fche@elastic.org> * langref.tex: Clarify utility of epilogue-type probe aliases. diff --git a/doc/Makefile.in b/doc/Makefile.in index e76f154d..a2700d3c 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -88,6 +88,7 @@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ +PIELDFLAGS = @PIELDFLAGS@ PROCFLAGS = @PROCFLAGS@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ diff --git a/doc/tutorial.tex b/doc/tutorial.tex index 58673467..3a04900b 100644 --- a/doc/tutorial.tex +++ b/doc/tutorial.tex @@ -175,8 +175,10 @@ in a source file, say \verb+net/socket.c+ in the kernel. The systemtap examines the kernel's debugging information to relate object code to source code. It works like a debugger: if you can name or place it, you can probe it. Use -\verb+kernel.function("*@net/socket.c")+ for the function entries, and -\verb+kernel.function("*@net/socket.c").return+ for the exits. Note +\verb+kernel.function("*@net/socket.c").call+ for the function +entries\footnote{Without the {\tt .call} qualifier, inlined function +instances are also probed, but they have no corresponding {\tt .return}.}, +and \verb+kernel.function("*@net/socket.c").return+ for matching exits. Note the use of wildcards in the function name part, and the subsequent \verb+@FILENAME+ part. You can also put wildcards into the file name, and even add a colon (\verb+:+) and a line number, if you want to |