git: aaa27bc8bb - main - Status/2023Q1/timerfd.adoc: Improvements

From: Lorenzo Salvadore <salvadore_at_FreeBSD.org>
Date: Mon, 27 Mar 2023 21:08:01 UTC
The branch main has been updated by salvadore:

URL: https://cgit.FreeBSD.org/doc/commit/?id=aaa27bc8bb4d13f0997400f137df589ce0794ff5

commit aaa27bc8bb4d13f0997400f137df589ce0794ff5
Author:     Lorenzo Salvadore <salvadore@FreeBSD.org>
AuthorDate: 2023-03-25 10:34:12 +0000
Commit:     Lorenzo Salvadore <salvadore@FreeBSD.org>
CommitDate: 2023-03-27 21:08:00 +0000

    Status/2023Q1/timerfd.adoc: Improvements
    
    - Use man:...[] macro.
    - Use `...` delimiters for code.
    - Remove line breaks before and after link.
    
    Reported by:    grahamperrin
    Reviewed by:    grahamperrin
    Approved by:    dbaio (co-mentor), carlavilla (mentor)
    Differential Revision: https://reviews.freebsd.org/D39265
---
 .../content/en/status/report-2023-01-2023-03/timerfd.adoc    | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/website/content/en/status/report-2023-01-2023-03/timerfd.adoc b/website/content/en/status/report-2023-01-2023-03/timerfd.adoc
index 0b971fc047..9c6841d5de 100644
--- a/website/content/en/status/report-2023-01-2023-03/timerfd.adoc
+++ b/website/content/en/status/report-2023-01-2023-03/timerfd.adoc
@@ -7,16 +7,14 @@ Contact: Jake Freeland <jfree@FreeBSD.org>
 
 The timerfd facility is a set of Linux-standard system calls that operate on interval timers.
 These timers are analogous to per-process timers but are represented by a file descriptor, rather than a process.
-These file descriptors may be passed to other processes, are preserved across fork(2), and may be monitored via kevent(2), poll(2), or select(2).
+These file descriptors may be passed to other processes, are preserved across man:fork[2], and may be monitored via man:kevent[2], man:poll[2], or man:select[2].
 
-A timerfd implementation in FreeBSD already exists for Linux compatibility, but
-link:https://reviews.freebsd.org/D38459[this differential revision]
-makes the interface native.
+A timerfd implementation in FreeBSD already exists for Linux compatibility, but link:https://reviews.freebsd.org/D38459[this differential revision] makes the interface native.
 The goal behind this change is to ease the FreeBSD porting process for programs that include timerfd.
 
 This specific implementation avoids adding new names to the system call table.
-Instead, timerfd_create() is wrapped by the specialfd() system call.
-The timerfd_gettime() and timerfd_settime() calls are wrapped ioctl()s.
+Instead, `timerfd_create()` is wrapped by the `specialfd()` system call.
+The `timerfd_gettime() and `timerfd_settime()` calls are wrapped `ioctl()` s.
 
 Developers that wish to support FreeBSD should avoid using timerfd.
-The kqueue() EVFILT_TIMER filter is preferred for establishing arbitrary timers.
+The `kqueue()` `EVFILT_TIMER` filter is preferred for establishing arbitrary timers.