aboutsummaryrefslogtreecommitdiff
path: root/lib/libstand
diff options
context:
space:
mode:
authorToomas Soome <tsoome@FreeBSD.org>2017-04-06 15:57:53 +0000
committerToomas Soome <tsoome@FreeBSD.org>2017-04-06 15:57:53 +0000
commitffd08eb06464513152db6cac7310438aed1f4499 (patch)
tree0d9da997ca60d67f240b306f64115d7f7b81aebd /lib/libstand
parent6ee43aee80f5b8c322973dc2b251d05be4a6321a (diff)
Notes
Diffstat (limited to 'lib/libstand')
-rw-r--r--lib/libstand/stand.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/libstand/stand.h b/lib/libstand/stand.h
index bedb286657bcf..8973a32d0bc94 100644
--- a/lib/libstand/stand.h
+++ b/lib/libstand/stand.h
@@ -194,6 +194,9 @@ extern struct open_file files[];
#define F_WRITE 0x0002 /* file opened for writing */
#define F_RAW 0x0004 /* raw device open - no file system */
#define F_NODEV 0x0008 /* network open - no device */
+#define F_MASK 0xFFFF
+/* Mode modifier for strategy() */
+#define F_NORA (0x01 << 16) /* Disable Read-Ahead */
#define isascii(c) (((c) & ~0x7F) == 0)