summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-10-31 01:36:19 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-10-31 01:36:19 +0000
commit8837b760cfac7d4d98b9040234c7abf8dc1c24fa (patch)
tree063284a3c1e75f1202019f5499158dbef204eb39 /sys
parent45c5bc2d584f41fd64f0d1053a12cb4130ef8305 (diff)
Clarify some struct fields.
Diffstat (limited to 'sys')
-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 */