From 56e036e4a7ea5d858c22aaf0683aa905c20d5104 Mon Sep 17 00:00:00 2001 From: Mac Mollison Date: Tue, 16 Nov 2010 08:33:38 -0500 Subject: Fix broken hyperlink Feather-trace page is in folder feathertrace, not feather-trace. --- doc/tracing.html | 2 +- doc/tracing.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/tracing.html b/doc/tracing.html index 8640d3f..6a54b62 100644 --- a/doc/tracing.html +++ b/doc/tracing.html @@ -43,7 +43,7 @@ This document is part of the documentation of the LITMUS
  • litmus_log: This trace contains text messages (created with the TRACE() macro, see litmus.h) that convey information useful for debugging. There is one global litmus_log buffer for the whole system. The litmus_log facility is essentially a replacement for printk(), which cannot be invoked from scheduling code without risking deadlock. Debug tracing must be enabled at compile time. Note that debug tracing creates significant overhead because string formatting takes place.

  • -
  • ft_trace: This trace contains binary-encoded time stamps. It is used for overhead tracing. There is one global ft_trace buffer for the whole system. The "ft" stands for Feather-Trace. Feather-Trace is designed to create only negligible overhead when event sources are disabled, and to incur only low overhead when recording time stamps.

  • +
  • ft_trace: This trace contains binary-encoded time stamps. It is used for overhead tracing. There is one global ft_trace buffer for the whole system. The "ft" stands for Feather-Trace. Feather-Trace is designed to create only negligible overhead when event sources are disabled, and to incur only low overhead when recording time stamps.

  • sched_trace: This trace contains binary-encoded scheduling event information, e.g., an event can be recorded whenever a task got scheduled, a job was released, a job completed, etc. There is one sched_trace buffer per processor. sched_trace is based on Feather-Trace and hence also incurs only negligible overhead when event sources are disabled.

  • diff --git a/doc/tracing.txt b/doc/tracing.txt index 7efcffd..80d14b0 100644 --- a/doc/tracing.txt +++ b/doc/tracing.txt @@ -34,7 +34,7 @@ As of version 2010.2, there are three tracing mechanisms available in LITMUS