2001-03-05 22:29:24 +01:00
|
|
|
/* fcntl.h
|
|
|
|
|
2010-01-13 17:51:37 +01:00
|
|
|
Copyright 1996, 1998, 2001, 2005, 2006, 2009, 2010 Red Hat, Inc.
|
2001-03-05 22:29:24 +01:00
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
#ifndef _FCNTL_H
|
|
|
|
#define _FCNTL_H
|
|
|
|
|
|
|
|
#include <sys/fcntl.h>
|
|
|
|
#define O_NDELAY _FNDELAY
|
|
|
|
|
2005-12-14 16:54:33 +01:00
|
|
|
/* sys/fcntl defines values up to 0x40000 (O_NOINHERIT). */
|
|
|
|
#define _FDIRECT 0x80000
|
2005-12-22 17:45:15 +01:00
|
|
|
#define _FNOFOLLOW 0x100000
|
2009-02-11 17:06:39 +01:00
|
|
|
#define _FDIRECTORY 0x200000
|
|
|
|
#define _FEXECSRCH 0x400000
|
2005-12-14 16:54:33 +01:00
|
|
|
|
2010-01-13 17:51:37 +01:00
|
|
|
/* POSIX-1.2008 requires this flag and allows to set it to 0 if its
|
|
|
|
functionality is not required. */
|
|
|
|
#define O_TTY_INIT 0
|
|
|
|
|
2005-12-14 16:54:33 +01:00
|
|
|
#define O_DIRECT _FDIRECT
|
2005-12-22 17:45:15 +01:00
|
|
|
#define O_NOFOLLOW _FNOFOLLOW
|
2005-12-14 16:54:33 +01:00
|
|
|
#define O_DSYNC _FSYNC
|
|
|
|
#define O_RSYNC _FSYNC
|
2009-02-11 17:06:39 +01:00
|
|
|
#define O_DIRECTORY _FDIRECTORY
|
|
|
|
#define O_EXEC _FEXECSRCH
|
|
|
|
#define O_SEARCH _FEXECSRCH
|
2005-12-14 16:54:33 +01:00
|
|
|
|
2006-08-07 21:29:14 +02:00
|
|
|
#define POSIX_FADV_NORMAL 0
|
|
|
|
#define POSIX_FADV_SEQUENTIAL 1
|
|
|
|
#define POSIX_FADV_RANDOM 2
|
|
|
|
#define POSIX_FADV_WILLNEED 3
|
|
|
|
#define POSIX_FADV_DONTNEED 4
|
|
|
|
#define POSIX_FADV_NOREUSE 5
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
extern int posix_fadvise _PARAMS ((int, off_t, off_t, int));
|
|
|
|
extern int posix_fallocate _PARAMS ((int, off_t, off_t));
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
#endif /* _FCNTL_H */
|