Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/compat/osf1 fcntl() flags



details:   https://anonhg.NetBSD.org/src/rev/4a4b41af39a7
branches:  trunk
changeset: 472263:4a4b41af39a7
user:      cgd <cgd%NetBSD.org@localhost>
date:      Mon Apr 26 05:56:34 1999 +0000

description:
fcntl() flags

diffstat:

 sys/compat/osf1/osf1.h |  10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)

diffs (24 lines):

diff -r 373fa84eec3d -r 4a4b41af39a7 sys/compat/osf1/osf1.h
--- a/sys/compat/osf1/osf1.h    Mon Apr 26 05:35:08 1999 +0000
+++ b/sys/compat/osf1/osf1.h    Mon Apr 26 05:56:34 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: osf1.h,v 1.4 1999/04/26 03:29:05 cgd Exp $ */
+/* $NetBSD: osf1.h,v 1.5 1999/04/26 05:56:34 cgd Exp $ */
 
 /*
  * Copyright (c) 1999 Christopher G. Demetriou.  All rights reserved.
@@ -136,7 +136,13 @@
 #define OSF1_FD_CLOEXEC                1
 
 /* fcntl GETFL/SETFL flags */
-/* XXX */
+#define        OSF1_FNONBLOCK          0x00000004
+#define        OSF1_FAPPEND            0x00000008
+#define        OSF1_FASYNC             0x00000040
+#define        OSF1_FSYNC              0x00004000
+#define        OSF1_FNDELAY            0x00008000
+#define        OSF1_FDSYNC             0x00080000
+#define        OSF1_FRSYNC             0x00100000
 
 /* struct osf1_flock, for GETLK/SETLK/SETLKW */
 /* XXX */



Home | Main Index | Thread Index | Old Index