Remove latin abbreviations
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Fri, 4 Sep 2015 02:26:16 +0000 (22:26 -0400)
committerPhilippe Proulx <eeppeliteloop@gmail.com>
Fri, 4 Sep 2015 15:56:04 +0000 (11:56 -0400)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
14 files changed:
contents/nuts-and-bolts/intro.md
contents/preface.md
contents/understanding-lttng/plumbing/lttng-sessiond.md
contents/using-lttng/controlling-tracing/enabling-disabling-channels/intro.md
contents/using-lttng/controlling-tracing/lttng-live.md
contents/using-lttng/instrumenting/advanced-techniques/32-bit-on-64-bit/building-32-bit-lttng-ust.md
contents/using-lttng/instrumenting/c-application/building-linking/dynamic-linking.md
contents/using-lttng/instrumenting/c-application/building-linking/static-linking.md
contents/using-lttng/instrumenting/c-application/defining-tracepoints.md
contents/using-lttng/instrumenting/c-application/tracef.md
contents/using-lttng/instrumenting/c-application/tracepoint-provider.md
contents/using-lttng/instrumenting/instrumenting-linux-kernel/instrumenting-out-of-tree-linux-kernel.md
contents/using-lttng/instrumenting/intro.md
contents/whats-new.md

index 401563336b7b6fa9d15fd47321cbab1ec51fdf6f..ba77f895b3d78c37f5a8f29b79b64f186a37405b 100644 (file)
@@ -48,7 +48,7 @@ designed to record much lower-level events that occur much more
 frequently than log messages, often in the thousands per second range,
 with very little execution overhead. Logging is more appropriate for
 very high-level analysis of less frequent events: user accesses,
-exceptional conditions (e.g., errors, warnings), database
+exceptional conditions (errors and warnings, for example), database
 transactions, instant messaging communications, etc. More formally,
 logging is one of several use cases that can be accomplished with
 tracing.
index d7fea230078de9097da0449b7e50b7586854249d..1fedc25c0c82d3c91ac728b71892cf783d6f91d2 100644 (file)
@@ -101,8 +101,7 @@ as linear as possible.
      applications and the Linux kernel, how to control tracing sessions
      using the `lttng` command line tool, and miscellaneous practical use
      cases.
-  6. [Reference](#doc-reference) contains references of LTTng components,
-     e.g., links to online manpages and to various APIs.
+  6. [Reference](#doc-reference) contains references of LTTng components.
 
 We recommend that you read the above chapters in this order, although
 some of them may be skipped depending on your situation. You may skip
index a1bb7f2ed8f64396285977932945221a3875937a..6e298e47e6e178e5f426249e44b4063cd4100264 100644 (file)
@@ -44,7 +44,7 @@ Session daemons run on a per-user basis. Knowing this, multiple
 instances of `lttng-sessiond` may run simultaneously, each belonging
 to a different user and each operating independently of the others.
 Only `root`'s session daemon, however, may control LTTng kernel modules
-(i.e. the kernel tracer). With that in mind, if a user has no root
+(that is, the kernel tracer). With that in mind, if a user has no root
 access on the target system, he cannot trace the system's kernel, but
 should still be able to trace its own instrumented applications.
 
index f96614911fb315d1123c9cce5cb26b94cf9d92b6..062c18248637741670d08fe2604bc38cb1e5449b 100644 (file)
@@ -38,7 +38,7 @@ default parameters in the current tracing session.
 <p>
     <span class="t">Note:</span>Because of a current limitation, all
     channels must be <em>created</em> prior to beginning tracing in a
-    given tracing session, i.e. before the first time you do
+    given tracing session, that is before the first time you do
     <code>lttng start</code>.
 </p>
 <p>
index dbe69309e6a89e53b3283284684c159c187dbd51..ef6c9affa2dc403a75e56045bf555a2181b19860 100644 (file)
@@ -72,7 +72,7 @@ babeltrace --input-format lttng-live net://localhost
 </pre>
 
 Then, choose a tracing session and start viewing events as they arrive
-using LTTng live, e.g.:
+using LTTng live:
 
 <pre class="term">
 babeltrace --input-format lttng-live net://localhost/host/hostname/my-session
index 340512c7026ea6db4dd683cc622f9d2d878407f6..c1317cf56a08a4c6ec9348da060b47a4c880a432 100644 (file)
@@ -29,7 +29,7 @@ of Userspace RCU and other dependencies.
 </p>
 <p>
     In this case, make sure to set <code>LDFLAGS</code> to all the
-    relevant 32-bit library paths, e.g.,
+    relevant 32-bit library paths, for example,
     <code>LDFLAGS="-L/usr/lib32 -L/usr/lib/i386-linux-gnu"</code>.
 </p>
 </div>
@@ -37,8 +37,8 @@ of Userspace RCU and other dependencies.
 <div class="tip">
 <p>
     <span class="t">Note:</span>You may add options to
-    <code>./configure</code> if you need them, e.g., for
-    Java and SystemTap support. Look at
+    <code>./configure</code> if you need them (for
+    Java and SystemTap support, for example). Look at
     <code>./configure --help</code> for more information.
 </p>
 </div>
index 468cdbfb03c51309bc3264c253eab681a144ffa3..4e02f9c3e9b36c2b009a9d3591109db168f09b4c 100644 (file)
@@ -27,8 +27,8 @@ much the same as the static library method, except that:
 
 Regarding `TRACEPOINT_DEFINE` and `TRACEPOINT_PROBE_DYNAMIC_LINKAGE`,
 the recommended practice is to use a separate C source file in your
-application to define them, and then include the tracepoint provider
-header files afterwards, e.g.:
+application to define them, then include the tracepoint provider
+header files afterwards. For example:
 
 ~~~ c
 #define TRACEPOINT_DEFINE
@@ -87,8 +87,8 @@ provider shared library _before_ the application actually starts:
 <p>
     For example, statically linking a tracepoint provider to a
     shared object which is to be dynamically loaded by an application
-    (e.g., a plugin) is not safe: the shared object, which contains the
-    tracepoint provider, could be dynamically closed
+    (a plugin, for example) is not safe: the shared object, which
+    contains the tracepoint provider, could be dynamically closed
     (<code>dlclose()</code>) at any time by the application.
 </p>
 
index 23e049ad0c3b9b42e9eb6bc1b64c37cdf774557a..8d80a92f4a074ed0107f6a804cfa253169f2bb29 100644 (file)
@@ -119,7 +119,7 @@ system, replace `-ldl` with `-lc`:
 gcc -o app tp.a other.o files.o of.o your.o app.o -llttng-ust <strong>-lc</strong>
 </pre>
 
-The application can be started as usual, e.g.:
+The application can be started as usual, for example:
 
 <pre class="term">
 ./app
index bd6c07648e90c79b7676ae0c26041b7746ffe832..39529942954ec417e5a96c84ccd73290a4cfe64b 100644 (file)
@@ -41,8 +41,8 @@ The tracepoint name becomes the event name once events are recorded
 by the LTTng-UST tracer. It must follow the tracepoint provider name
 syntax: start with a letter and contain either letters, numbers or
 underscores. Two tracepoints under the same provider cannot have the
-same name, i.e. you cannot overload a tracepoint like you would
-overload functions and methods in C++/Java.
+same name. In other words, you cannot overload a tracepoint like you
+would overload functions and methods in C++/Java.
 
 <div class="tip">
 <p><span class="t">Note:</span>The concatenation of the tracepoint
index b4a9428bcbcf148e1ca5854ba3ac9290cdfa2e0f..be5aad1f94ae20555498864808b6b0014a706771 100644 (file)
@@ -34,7 +34,8 @@ where you need to insert probes:
 #include <lttng/tracef.h>
 ~~~
 
-Use `tracef()` like you would use `printf()` in your source code, e.g.:
+Use `tracef()` like you would use `printf()` in your source code, for
+example:
 
 ~~~ c
     /* ... */
index b12b17ed9aeb07d3e1f23748fa55440eda2399f1..ce59741c29e7344c62ddd6fa17e7af95ec799f49 100644 (file)
@@ -110,7 +110,8 @@ variables).</p>
 
 The tracepoint provider is a group of tracepoint definitions; its chosen
 name should reflect this. A hierarchy like Java packages is recommended,
-using underscores instead of dots, e.g., `org_company_project_component`.
+using underscores instead of dots, for example,
+`org_company_project_component`.
 
 Next is `TRACEPOINT_INCLUDE`:
 
@@ -178,7 +179,7 @@ tracepoint definitions. How exactly this is done is out of this text's scope.
 in [Building/linking tracepoint providers and the user application](#doc-building-tracepoint-providers-and-user-application).
 
 You could include other header files like `tp.h` here to create the probes
-of different tracepoint providers, e.g.:
+of different tracepoint providers, for example:
 
 ~~~ c
 #define TRACEPOINT_CREATE_PROBES
index ce1ae11dab953baeb0c69febc31f943ed7647dc8..2eecabd80f8cb6f92fe8f7a8a838a499912cb5ec 100644 (file)
@@ -26,7 +26,7 @@ build time verification:
 
 The preferred, flexible way to include your module's mainline
 tracepoint definition header is to put it in a specific directory
-relative to your module's root, e.g., `tracepoints`, and include it
+relative to your module's root (`tracepoints`, for example) and include it
 relative to your module's root directory in the LTTng custom probe's
 source:
 
index b8a8198b3e8ba42419bfff35a0101e474b0ec9c3..a75227d902cfedaf5c69869d64b551d4a1b9bb6b 100644 (file)
@@ -15,8 +15,8 @@ All the previous examples have something in common: they rely on
 skin, cardiac monitoring would be futile.
 
 LTTng, as a tracer, is no different from the real life examples above.
-If you're about to trace a software system, i.e. record its history of
-execution, you better have probes in the subject you're
+If you're about to trace a software system or, put in other words, record its
+history of execution, you better have probes in the subject you're
 tracing: the actual software. Various ways were developed to do this.
 The most straightforward one is to manually place probes, called
 _tracepoints_, in the software's source code. The Linux kernel tracing
index 471d04957b13f44c4d7cc7d24fe7bd4b6bc7b07c..d5a00066ce982f091fb6888ad454ca9bbe84e69e 100644 (file)
@@ -16,7 +16,7 @@ commands of the `lttng` tool.
 LTTng-modules has supported system call tracing for a long time,
 but until now, it was only possible to record either all of them,
 or none of them. LTTng 2.6 allows the user to record specific
-system call events, e.g.:
+system call events, for example:
 
 <pre class="term">
 lttng enable-event --kernel --syscall open,fork,chdir,pipe
This page took 0.029091 seconds and 4 git commands to generate.