From a12fbf640489be17c800edc1fba9f926b8a1ab8b Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Wed, 26 Oct 2022 15:09:58 -0400 Subject: [PATCH] Cleanup: tests: fix typos in sdt test app comments MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérémie Galarneau Change-Id: I88e2daf8e7175f5ac784ae373833f8e6f17808bf --- .../userspace-probe-sdt-binary.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/utils/testapp/userspace-probe-sdt-binary/userspace-probe-sdt-binary.c b/tests/utils/testapp/userspace-probe-sdt-binary/userspace-probe-sdt-binary.c index 45eec1203..03bdb3a45 100644 --- a/tests/utils/testapp/userspace-probe-sdt-binary/userspace-probe-sdt-binary.c +++ b/tests/utils/testapp/userspace-probe-sdt-binary/userspace-probe-sdt-binary.c @@ -31,16 +31,16 @@ int main(int argc, char *argv[]) FOOBAR_TP1(); FOOBAR_TP2(); /* - * This SDT tracepoint has an argument. Argument extraction is not support - * at the moment but tracing of the tracepoint should work. + * This SDT tracepoint has an argument. Argument extraction is not supported + * at the moment, but tracing of the tracepoint should work. */ FOOBAR_TP_WITH_ARG(42); - /* Call function containing an SDT tracepoint in shared object */ + /* Call a function containing an SDT tracepoint in shared object. */ foo_function(); /* - * Load a show shared object and call a function containing an SDT + * Load a shared object and call a function containing an SDT * tracepoint */ handle = dlopen("libbar.so", RTLD_LAZY); @@ -52,12 +52,12 @@ int main(int argc, char *argv[]) bar_function(); dlclose(handle); - /* This tracepoint has 2 callsites in this binary */ + /* This tracepoint has 2 call sites in this binary. */ FOOBAR_TP2(); /* - * This function is defined in libfoo AND in libzzz. For a test, libzzz is - * LD_PRELOADed and should override this function + * This function is defined in libfoo and in libzzz. For a test, libzzz is + * LD_PRELOADed and should override this function. */ overridable_function(); -- 2.34.1