Add the f_vnode pointer to struct xfile, shortly it will no longer be

identical to f_data by definition.
This commit is contained in:
phk 2004-06-19 11:38:00 +00:00
parent ac0b4e6f1f
commit 9695efd3c3

View File

@ -149,6 +149,7 @@ struct xfile {
int xf_msgcount; /* references from message queue */
off_t xf_offset; /* file offset */
void *xf_data; /* file descriptor specific data */
void *xf_vnode; /* vnode pointer */
u_int xf_flag; /* flags (see fcntl.h) */
};