Final updates for release 0.2
[ust.git] / README
1 LTTNG USERSPACE TRACER (UST)
2 ----------------------------
3
4 For the UST manual, see: http://lttng.org/files/ust/manual/ust.html
5
6 Updated versions of this package may be found at:
7
8 * Releases: http://lttng.org/files/ust/releases
9 * GitWeb: http://git.dorsal.polymtl.ca (project: ust)
10 * Git: git://git.dorsal.polymtl.ca/git/ust.git
11
12
13
14 PREREQUISITES:
15
16 - liburcu
17
18 Userspace RCU library, by Mathieu Desnoyers and Paul E. McKenney
19 * Releases: http://lttng.org/files/ust/releases
20 * GitWeb: http://lttng.org/cgi-bin/gitweb.cgi?p=userspace-rcu.git;a=summary
21 * Git: git://lttng.org/userspace-rcu.git
22
23 -> This release was tested with liburcu v0.4.1
24
25
26 - libkcompat
27
28 Linux kernel userspace compatibility library.
29 (Provides userspace ports of some kernel APIs.)
30 * Releases: http://lttng.org/files/ust/releases
31 * GitWeb: http://git.dorsal.polymtl.ca (project: libkcompat)
32 * Git: git://git.dorsal.polymtl.ca/git/libkcompat.git
33
34 -> This release was tested with libkcompat v0.1
35
36
37
38 INSTALLATION INSTRUCTIONS:
39
40 - Download, compile and install liburcu and libkcompat.
41 - In this package's tree, run ./configure.
42 - Run make.
43 - Run make install.
44 - Run ldconfig.
45 - See the manual for usage instructions.
46
47
48
49 TRACE VIEWER:
50
51 LTTV is used for viewing UST traces. LTTV may be obtained at
52 http://lttng.org in the Downloads section.
53
54
55
56 PACKAGE CONTENTS:
57
58 This package contains the following elements.
59
60 - libust
61 The actual userspace tracing library that must be linked to the
62 instrumented programs.
63
64 - ustctl
65 A program to control the tracing of userspace applications. It can list
66 markers, start the tracing, stop the tracing, enable/disable markers, etc.
67
68 - ustd
69 The daemon that collects trace data and writes it to the disk.
70
71 - doc
72 The documentation.
73
74 - hello
75 An example application that uses the userspace tracer.
76
77 - libmallocwrap
78 An example library that can be LD_PRELOAD'ed to instrument calls to malloc()
79 in any program without need to recompile it.
80
81 - libinterfork
82 A library that is LD_PRELOAD'ed, and that hijacks calls to several system
83 calls in order to trace across these calls.
This page took 0.030736 seconds and 5 git commands to generate.