diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-10-11 13:07:09 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-10-11 13:07:09 -0600 |
commit | 8d333c97017352ec7a63bfe1aff829a06fbe841e (patch) | |
tree | 5966ac2fc9d26126c223c608600e6582cb6c0346 /lib9p/include | |
parent | 28f87fcb1823bb36b9a2e492cf840340f9671036 (diff) |
Factor back out a fidinfo struct
Diffstat (limited to 'lib9p/include')
-rw-r--r-- | lib9p/include/lib9p/srv.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib9p/include/lib9p/srv.h b/lib9p/include/lib9p/srv.h index 7aca76c..4bf957c 100644 --- a/lib9p/include/lib9p/srv.h +++ b/lib9p/include/lib9p/srv.h @@ -81,14 +81,10 @@ struct lib9p_srv_file { /* Managed by srv.c, but should be cloned by ->vtable->clone(). */ struct lib9p_srv_file *_parent_dir; /* clone this - /* Managed by srv.c, and should be initialized to 0 by ->vtable->clone(). */ + /* Managed by srv.c, but should be initialized to 0 by ->vtable->clone(). */ /* ref type 1: an entry in fidmap * ref type 2: ->_parent_dir of another file */ struct lib9p_srv_file *_refcount; - lib9p_o_t _io_flags; - bool _io_isdir; - size_t _io_dir_idx; - uint32_t _io_dir_off; /* This is where your implementation data goes. */ char data[0]; |