2000-08-02 15:15:00 +00:00
|
|
|
/* O_*, F_*, FD_* bit values for Linux.
|
2013-01-02 19:01:50 +00:00
|
|
|
Copyright (C) 2000-2013 Free Software Foundation, Inc.
|
2000-08-02 15:15:00 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
2000-08-02 15:15:00 +00:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2001-07-06 04:58:11 +00:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
2000-08-02 15:15:00 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
2000-08-02 15:15:00 +00:00
|
|
|
|
|
|
|
#ifndef _FCNTL_H
|
|
|
|
# error "Never use <bits/fcntl.h> directly; include <fcntl.h> instead."
|
|
|
|
#endif
|
|
|
|
|
2002-07-11 21:44:15 +00:00
|
|
|
#include <bits/wordsize.h>
|
2000-08-02 15:15:00 +00:00
|
|
|
|
2012-10-22 16:23:20 +02:00
|
|
|
#if __WORDSIZE == 64
|
2002-07-11 21:44:15 +00:00
|
|
|
/* Not necessary, files are always with 64bit off_t. */
|
2012-10-22 16:23:20 +02:00
|
|
|
# define __O_LARGEFILE 0
|
2002-07-11 21:44:15 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if __WORDSIZE == 64
|
|
|
|
/* Not necessary, we always have 64-bit offsets. */
|
|
|
|
# define F_GETLK64 5 /* Get record locking info. */
|
|
|
|
# define F_SETLK64 6 /* Set record locking info (non-blocking). */
|
|
|
|
# define F_SETLKW64 7 /* Set record locking info (blocking). */
|
2000-09-28 23:32:48 +00:00
|
|
|
#endif
|
2000-08-02 15:15:00 +00:00
|
|
|
|
|
|
|
struct flock
|
|
|
|
{
|
2000-09-29 20:25:04 +00:00
|
|
|
short int l_type; /* Type of lock: F_RDLCK, F_WRLCK, or F_UNLCK. */
|
2000-08-02 15:15:00 +00:00
|
|
|
short int l_whence; /* Where `l_start' is relative to (like `lseek'). */
|
2002-07-11 21:44:15 +00:00
|
|
|
#if __WORDSIZE == 64 || !defined __USE_FILE_OFFSET64
|
2000-08-02 15:15:00 +00:00
|
|
|
__off_t l_start; /* Offset where the lock begins. */
|
|
|
|
__off_t l_len; /* Size of the locked area; zero means until EOF. */
|
|
|
|
#else
|
|
|
|
__off64_t l_start; /* Offset where the lock begins. */
|
|
|
|
__off64_t l_len; /* Size of the locked area; zero means until EOF. */
|
|
|
|
#endif
|
|
|
|
__pid_t l_pid; /* Process holding the lock. */
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef __USE_LARGEFILE64
|
|
|
|
struct flock64
|
|
|
|
{
|
2000-09-29 20:25:04 +00:00
|
|
|
short int l_type; /* Type of lock: F_RDLCK, F_WRLCK, or F_UNLCK. */
|
2000-08-02 15:15:00 +00:00
|
|
|
short int l_whence; /* Where `l_start' is relative to (like `lseek'). */
|
|
|
|
__off64_t l_start; /* Offset where the lock begins. */
|
|
|
|
__off64_t l_len; /* Size of the locked area; zero means until EOF. */
|
|
|
|
__pid_t l_pid; /* Process holding the lock. */
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2012-10-20 12:54:49 +02:00
|
|
|
#if __WORDSIZE == 64
|
|
|
|
# define __POSIX_FADV_DONTNEED 6 /* Don't need these pages. */
|
|
|
|
# define __POSIX_FADV_NOREUSE 7 /* Data will be accessed once. */
|
|
|
|
#else
|
|
|
|
# define __POSIX_FADV_DONTNEED 4 /* Don't need these pages. */
|
|
|
|
# define __POSIX_FADV_NOREUSE 5 /* Data will be accessed once. */
|
2006-03-31 21:50:22 +00:00
|
|
|
#endif
|
|
|
|
|
2012-10-20 12:54:49 +02:00
|
|
|
/* Include generic Linux declarations. */
|
|
|
|
#include <bits/fcntl-linux.h>
|