summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorart <art@openbsd.org>2001-10-31 01:36:18 +0000
committerart <art@openbsd.org>2001-10-31 01:36:18 +0000
commit65de2ad2277c24a2e98a214df2ae3f6200eeafde (patch)
tree9337e47334d1d3e2aae8e078f19cf40fe0639807
parentFix creation of /etc/hosts file in install. (diff)
downloadwireguard-openbsd-65de2ad2277c24a2e98a214df2ae3f6200eeafde.tar.xz
wireguard-openbsd-65de2ad2277c24a2e98a214df2ae3f6200eeafde.zip
Clarify some struct fields.
-rw-r--r--sys/sys/file.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/file.h b/sys/sys/file.h
index 9aed80ae382..96f100d8f3a 100644
--- a/sys/sys/file.h
+++ b/sys/sys/file.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: file.h,v 1.13 2001/10/26 12:03:28 art Exp $ */
+/* $OpenBSD: file.h,v 1.14 2001/10/31 01:36:18 art Exp $ */
/* $NetBSD: file.h,v 1.11 1995/03/26 20:24:13 jtc Exp $ */
/*
@@ -81,8 +81,8 @@ struct file {
int (*fo_close) __P((struct file *fp, struct proc *p));
} *f_ops;
off_t f_offset;
- caddr_t f_data; /* vnode or socket */
- int f_iflags;
+ caddr_t f_data; /* private data */
+ int f_iflags; /* internal flags */
};
#define FIF_WANTCLOSE 0x01 /* a close is waiting for usecount */