From patchwork Thu Oct 5 23:24:45 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Steven Rostedt X-Patchwork-Id: 13410874 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id A153542C1F for ; Thu, 5 Oct 2023 23:23:41 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=none Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4920CC433CC; Thu, 5 Oct 2023 23:23:41 +0000 (UTC) Received: from rostedt by gandalf with local (Exim 4.96) (envelope-from ) id 1qoXi7-005VCO-2W; Thu, 05 Oct 2023 19:24:51 -0400 From: Steven Rostedt To: linux-trace-devel@vger.kernel.org Cc: Ross Zwisler , "Steven Rostedt (Google)" Subject: [PATCH 0/5] libtraceeval: Add man pages Date: Thu, 5 Oct 2023 19:24:45 -0400 Message-Id: <20231005232450.1311519-1-rostedt@goodmis.org> X-Mailer: git-send-email 2.40.1 Precedence: bulk X-Mailing-List: linux-trace-devel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 From: "Steven Rostedt (Google)" This series adds the man pages for all the currently defined APIs in traceeval.h. Steven Rostedt (Google) (5): libtraceeval: Start creating the documentation man pages libtraceeval: Add man pages for creating and releasing the traceeval descriptor libtraceeval: Add man pages for insertion and removal of elements in a traceeval libtraceeval: Add man pages for the traceeval iterator functions libtraceeval: Add man pages for traceeval statistics Documentation/.gitignore | 4 + Documentation/Makefile | 247 ++++++ Documentation/asciidoc.conf | 120 +++ Documentation/libtraceeval-init.txt | 394 +++++++++ Documentation/libtraceeval-insert.txt | 389 ++++++++ Documentation/libtraceeval-iterator.txt | 1072 +++++++++++++++++++++++ Documentation/libtraceeval-stat.txt | 307 +++++++ Documentation/libtraceeval.txt | 118 +++ Documentation/manpage-1.72.xsl | 14 + Documentation/manpage-base.xsl | 35 + Documentation/manpage-bold-literal.xsl | 17 + Documentation/manpage-normal.xsl | 13 + Documentation/manpage-suppress-sp.xsl | 21 + check-manpages.sh | 63 ++ 14 files changed, 2814 insertions(+) create mode 100644 Documentation/.gitignore create mode 100644 Documentation/Makefile create mode 100644 Documentation/asciidoc.conf create mode 100644 Documentation/libtraceeval-init.txt create mode 100644 Documentation/libtraceeval-insert.txt create mode 100644 Documentation/libtraceeval-iterator.txt create mode 100644 Documentation/libtraceeval-stat.txt create mode 100644 Documentation/libtraceeval.txt create mode 100644 Documentation/manpage-1.72.xsl create mode 100644 Documentation/manpage-base.xsl create mode 100644 Documentation/manpage-bold-literal.xsl create mode 100644 Documentation/manpage-normal.xsl create mode 100644 Documentation/manpage-suppress-sp.xsl create mode 100755 check-manpages.sh