git: f1f521b0ea - main - handbook/dtrace: Fix formatting
Mateusz Piotrowski <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.cvs.doc |
|---|---|
| Message-ID | <[email protected]> |
The branch main has been updated by 0mp: URL: https://cgit.FreeBSD.org/doc/commit/?id=f1f521b0eaffde9fb031a14e527bc5a19173afee commit f1f521b0eaffde9fb031a14e527bc5a19173afee Author: Mateusz Piotrowski <[email protected]> AuthorDate: 2025-07-17 22:39:05 +0000 Commit: Mateusz Piotrowski <[email protected]> CommitDate: 2025-07-17 22:39:05 +0000 handbook/dtrace: Fix formatting For some reason if you have two monospaced fragments touching one another asciidoc get confused. --- documentation/content/en/books/handbook/dtrace/_index.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/content/en/books/handbook/dtrace/_index.adoc b/documentation/content/en/books/handbook/dtrace/_index.adoc index 7e9dfc52f4..844e3b3419 100644 --- a/documentation/content/en/books/handbook/dtrace/_index.adoc +++ b/documentation/content/en/books/handbook/dtrace/_index.adoc @@ -93,7 +93,7 @@ Beginning with FreeBSD 10.0-RELEASE, the modules are automatically loaded when m FreeBSD uses the `DDB_CTF` kernel option to enable support for loading man:ctf[5] data from kernel modules and the kernel itself. `CTF` is the Solaris(TM) Compact C Type Format which encapsulates a reduced form of debugging information similar to `DWARF` and the venerable stabs. `CTF` data is added to binaries by the man:ctfconvert[1] and man:ctfmerge[1] build tools. -The `ctfconvert` utility parses `DWARF``ELF` debug sections created by the compiler and `ctfmerge` merges `CTF``ELF` sections from objects into either executables or shared libraries. +The `ctfconvert` utility parses `DWARF` `ELF` debug sections created by the compiler and `ctfmerge` merges `CTF` `ELF` sections from objects into either executables or shared libraries. Some different providers exist for FreeBSD than for Solaris(TM). Most notable is the `dtmalloc` provider, which allows tracing man:malloc[9] by type in the FreeBSD kernel.