Module Name: src
Committed By: pooka
Date: Tue Feb 1 21:21:34 UTC 2011
Modified Files:
src/sys/rump/include/rump: rumpdefs.h
Log Message:
regen for O_DIRECTORY
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/rump/include/rump/rumpdefs.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/rump/include/rump/rumpdefs.h
diff -u src/sys/rump/include/rump/rumpdefs.h:1.9 src/sys/rump/include/rump/rumpdefs.h:1.10
--- src/sys/rump/include/rump/rumpdefs.h:1.9 Wed Jul 28 09:32:13 2010
+++ src/sys/rump/include/rump/rumpdefs.h Tue Feb 1 21:21:34 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: rumpdefs.h,v 1.9 2010/07/28 09:32:13 hannken Exp $ */
+/* $NetBSD: rumpdefs.h,v 1.10 2011/02/01 21:21:34 pooka Exp $ */
/*
* AUTOMATICALLY GENERATED. DO NOT EDIT.
@@ -9,7 +9,7 @@
#include <rump/rump_namei.h>
-/* NetBSD: fcntl.h,v 1.35 2009/03/11 06:05:29 mrg Exp */
+/* NetBSD: fcntl.h,v 1.36 2010/09/21 19:26:18 chs Exp */
#define RUMP_O_RDONLY 0x00000000 /* open for reading only */
#define RUMP_O_WRONLY 0x00000001 /* open for writing only */
#define RUMP_O_RDWR 0x00000002 /* open for reading and writing */
@@ -24,12 +24,13 @@
#define RUMP_O_CREAT 0x00000200 /* create if nonexistent */
#define RUMP_O_TRUNC 0x00000400 /* truncate to zero length */
#define RUMP_O_EXCL 0x00000800 /* error if already exists */
+#define RUMP_O_NOCTTY 0x00008000 /* don't assign controlling terminal */
#define RUMP_O_DSYNC 0x00010000 /* write: I/O data completion */
#define RUMP_O_RSYNC 0x00020000 /* read: I/O completion as for write */
#define RUMP_O_DIRECT 0x00080000 /* direct I/O hint */
-#define RUMP_O_NOCTTY 0x00008000 /* don't assign controlling terminal */
+#define RUMP_O_DIRECTORY 0x00200000 /* fail if not a directory */
-/* NetBSD: vnode.h,v 1.222 2010/07/28 09:31:00 hannken Exp */
+/* NetBSD: vnode.h,v 1.223 2010/07/28 11:03:47 hannken Exp */
#ifndef __VTYPE_DEFINED
#define __VTYPE_DEFINED
enum vtype { VNON, VREG, VDIR, VBLK, VCHR, VLNK, VSOCK, VFIFO, VBAD };