aboutsummaryrefslogtreecommitdiff
path: root/doc/HACKING/Tracing.md
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2017-04-25 10:40:27 -0400
committerNick Mathewson <nickm@torproject.org>2017-04-25 10:40:30 -0400
commit6bf82a4910db3f20c2cb81d7569224f4322681f2 (patch)
treebd3f280d6e4a0732b473720910d5c2a7bd48bcc3 /doc/HACKING/Tracing.md
parentcb8ac1f33102dbe509edf50aa3cac2a106241466 (diff)
downloadtor-6bf82a4910db3f20c2cb81d7569224f4322681f2.tar.gz
tor-6bf82a4910db3f20c2cb81d7569224f4322681f2.zip
More clarification on 13802
Diffstat (limited to 'doc/HACKING/Tracing.md')
-rw-r--r--doc/HACKING/Tracing.md11
1 files changed, 6 insertions, 5 deletions
diff --git a/doc/HACKING/Tracing.md b/doc/HACKING/Tracing.md
index f4a55b7e02..a5fb5165e2 100644
--- a/doc/HACKING/Tracing.md
+++ b/doc/HACKING/Tracing.md
@@ -1,13 +1,14 @@
# Tracing #
-This document describes how the tracing subsystem works in tor so developers
-can add events to the code base but also hook them to a tracing framework.
+This document describes how the event tracing subsystem works in tor so
+developers can add events to the code base but also hook them to an event
+tracing framework.
## Basics ###
-Tracing is seperated in two concepts, trace events and a tracer. The tracing
-subsystem can be found in `src/trace`. The `events.h` header file is the
-main file that maps the different tracers to trace events.
+Event tracing is seperated in two concepts, trace events and a tracer. The
+tracing subsystem can be found in `src/trace`. The `events.h` header file is
+the main file that maps the different tracers to trace events.
### Events ###