ref: 987fe48400f1af3828b9b781610d99ed15829181
parent: cb8654c06091e213fec07df50c568762119a087c
author: Ori Bernstein <ori@eigenstate.org>
date: Wed Jan 6 05:07:10 EST 2021
9pfid(2): document struct Qid (thanks sirjofri) The Qid struct is pervasive when writing 9p servers, but is not described in the manpages. This adds a definition to the 9pfid manpage.
--- a/sys/man/2/9pfid
+++ b/sys/man/2/9pfid
@@ -14,6 +14,17 @@
.PP
.ft L
.nf
+.ta \w'\fL 'u +\w'\fLuvlong 'u
+typedef struct Qid
+{
+ uvlong path;
+ ulong vers;
+ uchar type;
+} Qid;
+.fi
+.PP
+.ft L
+.nf
.ta \w'\fL 'u +\w'\fLulong 'u
typedef struct Fid
{
--
⑨