Skip to content

Commit

Permalink
HTML bits for quark_queue_get_event(3)
Browse files Browse the repository at this point in the history
  • Loading branch information
haesbaert committed Dec 11, 2024
1 parent 2023129 commit 1083382
Show file tree
Hide file tree
Showing 14 changed files with 92 additions and 101 deletions.
42 changes: 20 additions & 22 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -289,9 +289,9 @@ <h1 class="Sh" id="CONVENTIONS"><a class="permalink" href="#CONVENTIONS">CONVENT
and/or stored. In the case of multithreading, these pointers should not be
accessed if another thread is driving <code class="Nm">quark</code>
through
<a class="Xr" href="quark_queue_get_events.3.html">quark_queue_get_events(3)</a>.</li>
<a class="Xr" href="quark_queue_get_event.3.html">quark_queue_get_event(3)</a>.</li>
<li>No threads are created, the library is driven solely through
<a class="Xr" href="quark_queue_get_events.3.html">quark_queue_get_events(3)</a>.</li>
<a class="Xr" href="quark_queue_get_event.3.html">quark_queue_get_event(3)</a>.</li>
<li>Access to a <var class="Vt">quark_queue</var> must be synchronized by the
user in the case of multithreading.</li>
</ul>
Expand All @@ -307,10 +307,10 @@ <h1 class="Sh" id="BASIC_USAGE"><a class="permalink" href="#BASIC_USAGE">BASIC
EBPF programs buffering data-structures and the like. It must be paired with
a <a class="Xr" href="quark_queue_close.3.html">quark_queue_close(3)</a> on
exit.</p>
<p class="Pp"><a class="Xr" href="quark_queue_get_events.3.html">quark_queue_get_events(3)</a>
<p class="Pp"><a class="Xr" href="quark_queue_get_event.3.html">quark_queue_get_event(3)</a>
is the main driver of the library, it does the buffering, per-ring scanning,
aggregation and event cache garbage collecting. In case there are no events
it returns zero and the user is expected to call
aggregation and event cache garbage collection. In case there are no events
it returns NULL and the user is expected to call
<a class="Xr" href="quark_queue_block.3.html">quark_queue_block(3)</a> or
equivalent.</p>
</section>
Expand All @@ -324,24 +324,22 @@ <h1 class="Sh" id="EXAMPLES"><a class="permalink" href="#EXAMPLES">EXAMPLES</a><
int
main(void)
{
struct quark_queue qq;
struct quark_event qevs[32], *qev;
int n, i;
struct quark_queue qq;
const struct quark_event *qev;

if (quark_queue_open(&amp;qq, NULL) == -1)
err(1, &quot;quark_queue_open&quot;);

for (; ;) {
n = quark_queue_get_events(&amp;qq, qevs, 32);
if (n == -1) {
warn(&quot;quark_queue_get_events&quot;);
break;
qev = quark_queue_get_event(&amp;qq);

/* No events, just block */
if (qev == NULL) {
quark_queue_block(qq);
continue;
}
/* Scan each event */
for (i = 0, qev = qevs; i &lt; n; i++, qev++)
quark_event_dump(qev, stdout);
if (n == 0)
quark_queue_block(&amp;qq);

quark_event_dump(qev, stdout);
}

quark_queue_close(&amp;qq);
Expand All @@ -358,8 +356,8 @@ <h1 class="Sh" id="API"><a class="permalink" href="#API">API</a></h1>
<dt><a class="Xr" href="quark_queue_default_attr.3.html">quark_queue_default_attr(3)</a></dt>
<dd>get default attributes of
<a class="Xr" href="quark_queue_open.3.html">quark_queue_open(3)</a>.</dd>
<dt><a class="Xr" href="quark_queue_get_events.3.html">quark_queue_get_events(3)</a></dt>
<dd>get events, main library call.</dd>
<dt><a class="Xr" href="quark_queue_get_event.3.html">quark_queue_get_event(3)</a></dt>
<dd>get event, main library call.</dd>
<dt><a class="Xr" href="quark_process_lookup.3.html">quark_process_lookup(3)</a></dt>
<dd>lookup a process in quark's internal cache</dd>
<dt><a class="Xr" href="quark_event_dump.3.html">quark_event_dump(3)</a></dt>
Expand All @@ -377,7 +375,7 @@ <h1 class="Sh" id="API"><a class="permalink" href="#API">API</a></h1>
<section class="Sh">
<h1 class="Sh" id="FURTHER_READING"><a class="permalink" href="#FURTHER_READING">FURTHER
READING</a></h1>
<p class="Pp"><a class="Xr" href="quark_queue_get_events.3.html">quark_queue_get_events(3)</a>
<p class="Pp"><a class="Xr" href="quark_queue_get_event.3.html">quark_queue_get_event(3)</a>
is the meat of the library and contains further useful documentation.</p>
<p class="Pp"><a class="Xr" href="quark-mon.8.html">quark-mon(8)</a> is the
easiest way to get started with <code class="Nm">quark</code>.</p>
Expand All @@ -392,7 +390,7 @@ <h1 class="Sh" id="SEE_ALSO"><a class="permalink" href="#SEE_ALSO">SEE
<a class="Xr" href="quark_queue_block.3.html">quark_queue_block(3)</a>,
<a class="Xr" href="quark_queue_close.3.html">quark_queue_close(3)</a>,
<a class="Xr" href="quark_queue_get_epollfd.3.html">quark_queue_get_epollfd(3)</a>,
<a class="Xr" href="quark_queue_get_events.3.html">quark_queue_get_events(3)</a>,
<a class="Xr" href="quark_queue_get_event.3.html">quark_queue_get_event(3)</a>,
<a class="Xr" href="quark_queue_get_stats.3.html">quark_queue_get_stats(3)</a>,
<a class="Xr" href="quark_queue_open.3.html">quark_queue_open(3)</a>,
<a class="Xr" href="quark-btf.8.html">quark-btf(8)</a>,
Expand All @@ -411,7 +409,7 @@ <h1 class="Sh" id="HISTORY"><a class="permalink" href="#HISTORY">HISTORY</a></h1
</div>
<table class="foot">
<tr>
<td class="foot-date">November 12, 2024</td>
<td class="foot-date">December 1, 2024</td>
<td class="foot-os">Linux</td>
</tr>
</table>
Expand Down
4 changes: 2 additions & 2 deletions docs/quark-btf.8.html
Original file line number Diff line number Diff line change
Expand Up @@ -157,15 +157,15 @@ <h1 class="Sh" id="SEE_ALSO"><a class="permalink" href="#SEE_ALSO">SEE
<a class="Xr" href="quark_queue_block.3.html">quark_queue_block(3)</a>,
<a class="Xr" href="quark_queue_close.3.html">quark_queue_close(3)</a>,
<a class="Xr" href="quark_queue_get_epollfd.3.html">quark_queue_get_epollfd(3)</a>,
<a class="Xr" href="quark_queue_get_events.3.html">quark_queue_get_events(3)</a>,
<a class="Xr" href="quark_queue_get_event.3.html">quark_queue_get_event(3)</a>,
<a class="Xr" href="quark_queue_get_stats.3.html">quark_queue_get_stats(3)</a>,
<a class="Xr" href="quark_queue_open.3.html">quark_queue_open(3)</a>,
<a class="Xr" href="quark-mon.8.html">quark-mon(8)</a></p>
</section>
</div>
<table class="foot">
<tr>
<td class="foot-date">October 28, 2024</td>
<td class="foot-date">December 1, 2024</td>
<td class="foot-os">Linux</td>
</tr>
</table>
Expand Down
4 changes: 2 additions & 2 deletions docs/quark-mon.8.html
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ <h1 class="Sh" id="SEE_ALSO"><a class="permalink" href="#SEE_ALSO">SEE
<a class="Xr" href="quark_queue_block.3.html">quark_queue_block(3)</a>,
<a class="Xr" href="quark_queue_close.3.html">quark_queue_close(3)</a>,
<a class="Xr" href="quark_queue_get_epollfd.3.html">quark_queue_get_epollfd(3)</a>,
<a class="Xr" href="quark_queue_get_events.3.html">quark_queue_get_events(3)</a>,
<a class="Xr" href="quark_queue_get_event.3.html">quark_queue_get_event(3)</a>,
<a class="Xr" href="quark_queue_get_stats.3.html">quark_queue_get_stats(3)</a>,
<a class="Xr" href="quark_queue_open.3.html">quark_queue_open(3)</a>,
<a class="Xr" href="quark-btf.8.html">quark-btf(8)</a>,
Expand All @@ -180,7 +180,7 @@ <h1 class="Sh" id="SEE_ALSO"><a class="permalink" href="#SEE_ALSO">SEE
</div>
<table class="foot">
<tr>
<td class="foot-date">October 28, 2024</td>
<td class="foot-date">December 1, 2024</td>
<td class="foot-os">Linux</td>
</tr>
</table>
Expand Down
4 changes: 2 additions & 2 deletions docs/quark-test.8.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ <h1 class="Sh" id="SEE_ALSO"><a class="permalink" href="#SEE_ALSO">SEE
<a class="Xr" href="quark_queue_block.3.html">quark_queue_block(3)</a>,
<a class="Xr" href="quark_queue_close.3.html">quark_queue_close(3)</a>,
<a class="Xr" href="quark_queue_get_epollfd.3.html">quark_queue_get_epollfd(3)</a>,
<a class="Xr" href="quark_queue_get_events.3.html">quark_queue_get_events(3)</a>,
<a class="Xr" href="quark_queue_get_event.3.html">quark_queue_get_event(3)</a>,
<a class="Xr" href="quark_queue_get_stats.3.html">quark_queue_get_stats(3)</a>,
<a class="Xr" href="quark_queue_open.3.html">quark_queue_open(3)</a>,
<a class="Xr" href="quark-btf.8.html">quark-btf(8)</a>,
Expand All @@ -129,7 +129,7 @@ <h1 class="Sh" id="SEE_ALSO"><a class="permalink" href="#SEE_ALSO">SEE
</div>
<table class="foot">
<tr>
<td class="foot-date">October 28, 2024</td>
<td class="foot-date">December 1, 2024</td>
<td class="foot-os">Linux</td>
</tr>
</table>
Expand Down
42 changes: 20 additions & 22 deletions docs/quark.7.html
Original file line number Diff line number Diff line change
Expand Up @@ -289,9 +289,9 @@ <h1 class="Sh" id="CONVENTIONS"><a class="permalink" href="#CONVENTIONS">CONVENT
and/or stored. In the case of multithreading, these pointers should not be
accessed if another thread is driving <code class="Nm">quark</code>
through
<a class="Xr" href="quark_queue_get_events.3.html">quark_queue_get_events(3)</a>.</li>
<a class="Xr" href="quark_queue_get_event.3.html">quark_queue_get_event(3)</a>.</li>
<li>No threads are created, the library is driven solely through
<a class="Xr" href="quark_queue_get_events.3.html">quark_queue_get_events(3)</a>.</li>
<a class="Xr" href="quark_queue_get_event.3.html">quark_queue_get_event(3)</a>.</li>
<li>Access to a <var class="Vt">quark_queue</var> must be synchronized by the
user in the case of multithreading.</li>
</ul>
Expand All @@ -307,10 +307,10 @@ <h1 class="Sh" id="BASIC_USAGE"><a class="permalink" href="#BASIC_USAGE">BASIC
EBPF programs buffering data-structures and the like. It must be paired with
a <a class="Xr" href="quark_queue_close.3.html">quark_queue_close(3)</a> on
exit.</p>
<p class="Pp"><a class="Xr" href="quark_queue_get_events.3.html">quark_queue_get_events(3)</a>
<p class="Pp"><a class="Xr" href="quark_queue_get_event.3.html">quark_queue_get_event(3)</a>
is the main driver of the library, it does the buffering, per-ring scanning,
aggregation and event cache garbage collecting. In case there are no events
it returns zero and the user is expected to call
aggregation and event cache garbage collection. In case there are no events
it returns NULL and the user is expected to call
<a class="Xr" href="quark_queue_block.3.html">quark_queue_block(3)</a> or
equivalent.</p>
</section>
Expand All @@ -324,24 +324,22 @@ <h1 class="Sh" id="EXAMPLES"><a class="permalink" href="#EXAMPLES">EXAMPLES</a><
int
main(void)
{
struct quark_queue qq;
struct quark_event qevs[32], *qev;
int n, i;
struct quark_queue qq;
const struct quark_event *qev;

if (quark_queue_open(&amp;qq, NULL) == -1)
err(1, &quot;quark_queue_open&quot;);

for (; ;) {
n = quark_queue_get_events(&amp;qq, qevs, 32);
if (n == -1) {
warn(&quot;quark_queue_get_events&quot;);
break;
qev = quark_queue_get_event(&amp;qq);

/* No events, just block */
if (qev == NULL) {
quark_queue_block(qq);
continue;
}
/* Scan each event */
for (i = 0, qev = qevs; i &lt; n; i++, qev++)
quark_event_dump(qev, stdout);
if (n == 0)
quark_queue_block(&amp;qq);

quark_event_dump(qev, stdout);
}

quark_queue_close(&amp;qq);
Expand All @@ -358,8 +356,8 @@ <h1 class="Sh" id="API"><a class="permalink" href="#API">API</a></h1>
<dt><a class="Xr" href="quark_queue_default_attr.3.html">quark_queue_default_attr(3)</a></dt>
<dd>get default attributes of
<a class="Xr" href="quark_queue_open.3.html">quark_queue_open(3)</a>.</dd>
<dt><a class="Xr" href="quark_queue_get_events.3.html">quark_queue_get_events(3)</a></dt>
<dd>get events, main library call.</dd>
<dt><a class="Xr" href="quark_queue_get_event.3.html">quark_queue_get_event(3)</a></dt>
<dd>get event, main library call.</dd>
<dt><a class="Xr" href="quark_process_lookup.3.html">quark_process_lookup(3)</a></dt>
<dd>lookup a process in quark's internal cache</dd>
<dt><a class="Xr" href="quark_event_dump.3.html">quark_event_dump(3)</a></dt>
Expand All @@ -377,7 +375,7 @@ <h1 class="Sh" id="API"><a class="permalink" href="#API">API</a></h1>
<section class="Sh">
<h1 class="Sh" id="FURTHER_READING"><a class="permalink" href="#FURTHER_READING">FURTHER
READING</a></h1>
<p class="Pp"><a class="Xr" href="quark_queue_get_events.3.html">quark_queue_get_events(3)</a>
<p class="Pp"><a class="Xr" href="quark_queue_get_event.3.html">quark_queue_get_event(3)</a>
is the meat of the library and contains further useful documentation.</p>
<p class="Pp"><a class="Xr" href="quark-mon.8.html">quark-mon(8)</a> is the
easiest way to get started with <code class="Nm">quark</code>.</p>
Expand All @@ -392,7 +390,7 @@ <h1 class="Sh" id="SEE_ALSO"><a class="permalink" href="#SEE_ALSO">SEE
<a class="Xr" href="quark_queue_block.3.html">quark_queue_block(3)</a>,
<a class="Xr" href="quark_queue_close.3.html">quark_queue_close(3)</a>,
<a class="Xr" href="quark_queue_get_epollfd.3.html">quark_queue_get_epollfd(3)</a>,
<a class="Xr" href="quark_queue_get_events.3.html">quark_queue_get_events(3)</a>,
<a class="Xr" href="quark_queue_get_event.3.html">quark_queue_get_event(3)</a>,
<a class="Xr" href="quark_queue_get_stats.3.html">quark_queue_get_stats(3)</a>,
<a class="Xr" href="quark_queue_open.3.html">quark_queue_open(3)</a>,
<a class="Xr" href="quark-btf.8.html">quark-btf(8)</a>,
Expand All @@ -411,7 +409,7 @@ <h1 class="Sh" id="HISTORY"><a class="permalink" href="#HISTORY">HISTORY</a></h1
</div>
<table class="foot">
<tr>
<td class="foot-date">November 12, 2024</td>
<td class="foot-date">December 1, 2024</td>
<td class="foot-os">Linux</td>
</tr>
</table>
Expand Down
4 changes: 2 additions & 2 deletions docs/quark_event_dump.3.html
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ <h1 class="Sh" id="SEE_ALSO"><a class="permalink" href="#SEE_ALSO">SEE
<a class="Xr" href="quark_queue_close.3.html">quark_queue_close(3)</a>,
<a class="Xr" href="quark_queue_default_attr.3.html">quark_queue_default_attr(3)</a>,
<a class="Xr" href="quark_queue_get_epollfd.3.html">quark_queue_get_epollfd(3)</a>,
<a class="Xr" href="quark_queue_get_events.3.html">quark_queue_get_events(3)</a>,
<a class="Xr" href="quark_queue_get_event.3.html">quark_queue_get_event(3)</a>,
<a class="Xr" href="quark_queue_get_stats.3.html">quark_queue_get_stats(3)</a>,
<a class="Xr" href="quark_queue_open.3.html">quark_queue_open(3)</a>,
<a class="Xr" href="quark.7.html">quark(7)</a>,
Expand All @@ -108,7 +108,7 @@ <h1 class="Sh" id="SEE_ALSO"><a class="permalink" href="#SEE_ALSO">SEE
</div>
<table class="foot">
<tr>
<td class="foot-date">September 19, 2024</td>
<td class="foot-date">December 1, 2024</td>
<td class="foot-os">Linux</td>
</tr>
</table>
Expand Down
6 changes: 3 additions & 3 deletions docs/quark_process_lookup.3.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ <h1 class="Sh" id="RETURN_VALUES"><a class="permalink" href="#RETURN_VALUES">RET
points to the internal process used by quark, therefore, its contents must
<a class="permalink" href="#NOT"><i class="Em" id="NOT">NOT</i></a> be
modified, or accessed while
<a class="Xr" href="quark_queue_get_events.3.html">quark_queue_get_events(3)</a>
<a class="Xr" href="quark_queue_get_event.3.html">quark_queue_get_event(3)</a>
is taking place, as this might free the pointed memory.</p>
</section>
<section class="Sh">
Expand All @@ -56,7 +56,7 @@ <h1 class="Sh" id="SEE_ALSO"><a class="permalink" href="#SEE_ALSO">SEE
<a class="Xr" href="quark_queue_close.3.html">quark_queue_close(3)</a>,
<a class="Xr" href="quark_queue_default_attr.3.html">quark_queue_default_attr(3)</a>,
<a class="Xr" href="quark_queue_get_epollfd.3.html">quark_queue_get_epollfd(3)</a>,
<a class="Xr" href="quark_queue_get_events.3.html">quark_queue_get_events(3)</a>,
<a class="Xr" href="quark_queue_get_event.3.html">quark_queue_get_event(3)</a>,
<a class="Xr" href="quark_queue_get_stats.3.html">quark_queue_get_stats(3)</a>,
<a class="Xr" href="quark_queue_open.3.html">quark_queue_open(3)</a>,
<a class="Xr" href="quark-btf.8.html">quark-btf(8)</a>,
Expand All @@ -66,7 +66,7 @@ <h1 class="Sh" id="SEE_ALSO"><a class="permalink" href="#SEE_ALSO">SEE
</div>
<table class="foot">
<tr>
<td class="foot-date">October 25, 2024</td>
<td class="foot-date">December 1, 2024</td>
<td class="foot-os">Linux</td>
</tr>
</table>
Expand Down
8 changes: 4 additions & 4 deletions docs/quark_queue_block.3.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ <h1 class="Sh" id="SYNOPSIS"><a class="permalink" href="#SYNOPSIS">SYNOPSIS</a><
<h1 class="Sh" id="DESCRIPTION"><a class="permalink" href="#DESCRIPTION">DESCRIPTION</a></h1>
<code class="Nm">quark_queue_block</code> blocks the calling process until there
would be events to be read with
<a class="Xr" href="quark_queue_get_events.3.html">quark_queue_get_events(3)</a>.
<a class="Xr" href="quark_queue_get_event.3.html">quark_queue_get_event(3)</a>.
<p class="Pp">Internally this will call
<a class="Xr" href="epoll_wait.2.html">epoll_wait(2)</a> on the descriptor
returned by
Expand All @@ -41,7 +41,7 @@ <h1 class="Sh" id="DESCRIPTION"><a class="permalink" href="#DESCRIPTION">DESCRIP
perf-ring file descriptors only become readable once a certain amount of
data surpasses a threshold. On the return from
<code class="Nm">quark_queue_block</code>, the caller should call
<a class="Xr" href="quark_queue_get_events.3.html">quark_queue_get_events(3)</a>
<a class="Xr" href="quark_queue_get_event.3.html">quark_queue_get_event(3)</a>
until it returns zero, signifying there are no more events to be read. See
<a class="Xr" href="quark.7.html">quark(7)</a> for an example.</p>
<section class="Sh">
Expand All @@ -58,7 +58,7 @@ <h1 class="Sh" id="SEE_ALSO"><a class="permalink" href="#SEE_ALSO">SEE
<a class="Xr" href="quark_queue_close.3.html">quark_queue_close(3)</a>,
<a class="Xr" href="quark_queue_default_attr.3.html">quark_queue_default_attr(3)</a>,
<a class="Xr" href="quark_queue_get_epollfd.3.html">quark_queue_get_epollfd(3)</a>,
<a class="Xr" href="quark_queue_get_events.3.html">quark_queue_get_events(3)</a>,
<a class="Xr" href="quark_queue_get_event.3.html">quark_queue_get_event(3)</a>,
<a class="Xr" href="quark_queue_get_stats.3.html">quark_queue_get_stats(3)</a>,
<a class="Xr" href="quark_queue_open.3.html">quark_queue_open(3)</a>,
<a class="Xr" href="quark.7.html">quark(7)</a>,
Expand All @@ -69,7 +69,7 @@ <h1 class="Sh" id="SEE_ALSO"><a class="permalink" href="#SEE_ALSO">SEE
</div>
<table class="foot">
<tr>
<td class="foot-date">October 25, 2024</td>
<td class="foot-date">December 1, 2024</td>
<td class="foot-os">Linux</td>
</tr>
</table>
Expand Down
4 changes: 2 additions & 2 deletions docs/quark_queue_close.3.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ <h1 class="Sh" id="SEE_ALSO"><a class="permalink" href="#SEE_ALSO">SEE
<a class="Xr" href="quark_queue_block.3.html">quark_queue_block(3)</a>,
<a class="Xr" href="quark_queue_default_attr.3.html">quark_queue_default_attr(3)</a>,
<a class="Xr" href="quark_queue_get_epollfd.3.html">quark_queue_get_epollfd(3)</a>,
<a class="Xr" href="quark_queue_get_events.3.html">quark_queue_get_events(3)</a>,
<a class="Xr" href="quark_queue_get_event.3.html">quark_queue_get_event(3)</a>,
<a class="Xr" href="quark_queue_get_stats.3.html">quark_queue_get_stats(3)</a>,
<a class="Xr" href="quark_queue_open.3.html">quark_queue_open(3)</a>,
<a class="Xr" href="quark.7.html">quark(7)</a>,
Expand All @@ -59,7 +59,7 @@ <h1 class="Sh" id="SEE_ALSO"><a class="permalink" href="#SEE_ALSO">SEE
</div>
<table class="foot">
<tr>
<td class="foot-date">October 25, 2024</td>
<td class="foot-date">December 1, 2024</td>
<td class="foot-os">Linux</td>
</tr>
</table>
Expand Down
4 changes: 2 additions & 2 deletions docs/quark_queue_default_attr.3.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ <h1 class="Sh" id="SEE_ALSO"><a class="permalink" href="#SEE_ALSO">SEE
<a class="Xr" href="quark_process_lookup.3.html">quark_process_lookup(3)</a>,
<a class="Xr" href="quark_queue_block.3.html">quark_queue_block(3)</a>,
<a class="Xr" href="quark_queue_close.3.html">quark_queue_close(3)</a>,
<a class="Xr" href="quark_queue_get_events.3.html">quark_queue_get_events(3)</a>,
<a class="Xr" href="quark_queue_get_event.3.html">quark_queue_get_event(3)</a>,
<a class="Xr" href="quark_queue_open.3.html">quark_queue_open(3)</a>,
<a class="Xr" href="quark.7.html">quark(7)</a>,
<a class="Xr" href="quark-btf.8.html">quark-btf(8)</a>,
Expand All @@ -53,7 +53,7 @@ <h1 class="Sh" id="SEE_ALSO"><a class="permalink" href="#SEE_ALSO">SEE
</div>
<table class="foot">
<tr>
<td class="foot-date">October 25, 2024</td>
<td class="foot-date">December 1, 2024</td>
<td class="foot-os">Linux</td>
</tr>
</table>
Expand Down
Loading

0 comments on commit 1083382

Please sign in to comment.