modernc.org/cc@v1.0.1/v2/headers/linux_amd64/usr/include/fcntl.h (about)

     1  /* Copyright (C) 1991-2015 Free Software Foundation, Inc.
     2     This file is part of the GNU C Library.
     3  
     4     The GNU C Library is free software; you can redistribute it and/or
     5     modify it under the terms of the GNU Lesser General Public
     6     License as published by the Free Software Foundation; either
     7     version 2.1 of the License, or (at your option) any later version.
     8  
     9     The GNU C Library is distributed in the hope that it will be useful,
    10     but WITHOUT ANY WARRANTY; without even the implied warranty of
    11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    12     Lesser General Public License for more details.
    13  
    14     You should have received a copy of the GNU Lesser General Public
    15     License along with the GNU C Library; if not, see
    16     <http://www.gnu.org/licenses/>.  */
    17  
    18  /*
    19   *	POSIX Standard: 6.5 File Control Operations	<fcntl.h>
    20   */
    21  
    22  #ifndef	_FCNTL_H
    23  #define	_FCNTL_H	1
    24  
    25  #include <features.h>
    26  
    27  /* This must be early so <bits/fcntl.h> can define types winningly.  */
    28  __BEGIN_DECLS
    29  /* Get __mode_t, __dev_t and __off_t  .*/
    30  #include <bits/types.h>
    31  /* Get the definitions of O_*, F_*, FD_*: all the
    32     numbers and flag bits for `open', `fcntl', et al.  */
    33  #include <bits/fcntl.h>
    34  /* Detect if open needs mode as a third argument (or for openat as a fourth
    35     argument).  */
    36  #ifdef __O_TMPFILE
    37  # define __OPEN_NEEDS_MODE(oflag) \
    38    (((oflag) & O_CREAT) != 0 || ((oflag) & __O_TMPFILE) == __O_TMPFILE)
    39  #else
    40  # define __OPEN_NEEDS_MODE(oflag) (((oflag) & O_CREAT) != 0)
    41  #endif
    42  /* POSIX.1-2001 specifies that these types are defined by <fcntl.h>.
    43     Earlier POSIX standards permitted any type ending in `_t' to be defined
    44     by any POSIX header, so we don't conditionalize the definitions here.  */
    45  #ifndef __mode_t_defined
    46  typedef __mode_t mode_t;
    47  # define __mode_t_defined
    48  #endif
    49  
    50  #ifndef __off_t_defined
    51  # ifndef __USE_FILE_OFFSET64
    52  typedef __off_t off_t;
    53  # else
    54  typedef __off64_t off_t;
    55  # endif
    56  # define __off_t_defined
    57  #endif
    58  
    59  #if defined __USE_LARGEFILE64 && !defined __off64_t_defined
    60  typedef __off64_t off64_t;
    61  # define __off64_t_defined
    62  #endif
    63  
    64  #ifndef __pid_t_defined
    65  typedef __pid_t pid_t;
    66  # define __pid_t_defined
    67  #endif
    68  
    69  /* For XPG all symbols from <sys/stat.h> should also be available.  */
    70  #if defined __USE_XOPEN || defined __USE_XOPEN2K8
    71  # define __need_timespec
    72  # include <time.h>
    73  # include <bits/stat.h>
    74  
    75  # define S_IFMT		__S_IFMT
    76  # define S_IFDIR	__S_IFDIR
    77  # define S_IFCHR	__S_IFCHR
    78  # define S_IFBLK	__S_IFBLK
    79  # define S_IFREG	__S_IFREG
    80  # ifdef __S_IFIFO
    81  #  define S_IFIFO	__S_IFIFO
    82  # endif
    83  # ifdef __S_IFLNK
    84  #  define S_IFLNK	__S_IFLNK
    85  # endif
    86  # if (defined __USE_UNIX98 || defined __USE_XOPEN2K8) && defined __S_IFSOCK
    87  #  define S_IFSOCK	__S_IFSOCK
    88  # endif
    89  
    90  /* Protection bits.  */
    91  
    92  # define S_ISUID	__S_ISUID	/* Set user ID on execution.  */
    93  # define S_ISGID	__S_ISGID	/* Set group ID on execution.  */
    94  
    95  # if defined __USE_MISC || defined __USE_XOPEN
    96  /* Save swapped text after use (sticky bit).  This is pretty well obsolete.  */
    97  #  define S_ISVTX	__S_ISVTX
    98  # endif
    99  
   100  # define S_IRUSR	__S_IREAD	/* Read by owner.  */
   101  # define S_IWUSR	__S_IWRITE	/* Write by owner.  */
   102  # define S_IXUSR	__S_IEXEC	/* Execute by owner.  */
   103  /* Read, write, and execute by owner.  */
   104  # define S_IRWXU	(__S_IREAD|__S_IWRITE|__S_IEXEC)
   105  
   106  # define S_IRGRP	(S_IRUSR >> 3)	/* Read by group.  */
   107  # define S_IWGRP	(S_IWUSR >> 3)	/* Write by group.  */
   108  # define S_IXGRP	(S_IXUSR >> 3)	/* Execute by group.  */
   109  /* Read, write, and execute by group.  */
   110  # define S_IRWXG	(S_IRWXU >> 3)
   111  
   112  # define S_IROTH	(S_IRGRP >> 3)	/* Read by others.  */
   113  # define S_IWOTH	(S_IWGRP >> 3)	/* Write by others.  */
   114  # define S_IXOTH	(S_IXGRP >> 3)	/* Execute by others.  */
   115  /* Read, write, and execute by others.  */
   116  # define S_IRWXO	(S_IRWXG >> 3)
   117  #endif
   118  
   119  #ifdef	__USE_MISC
   120  # ifndef R_OK			/* Verbatim from <unistd.h>.  Ugh.  */
   121  /* Values for the second argument to access.
   122     These may be OR'd together.  */
   123  #  define R_OK	4		/* Test for read permission.  */
   124  #  define W_OK	2		/* Test for write permission.  */
   125  #  define X_OK	1		/* Test for execute permission.  */
   126  #  define F_OK	0		/* Test for existence.  */
   127  # endif
   128  #endif				/* Use misc.  */
   129  
   130  /* XPG wants the following symbols.   <stdio.h> has the same definitions.  */
   131  #if defined __USE_XOPEN || defined __USE_XOPEN2K8
   132  # define SEEK_SET	0	/* Seek from beginning of file.  */
   133  # define SEEK_CUR	1	/* Seek from current position.  */
   134  # define SEEK_END	2	/* Seek from end of file.  */
   135  #endif				/* XPG */
   136  
   137  /* The constants AT_REMOVEDIR and AT_EACCESS have the same value.  AT_EASSESS
   138     is meaningful only to faccessat, while AT_REMOVEDIR is meaningful only to
   139     unlinkat.  The two functions do completely different things and therefore,
   140     the flags can be allowed to overlap.  For example, passing AT_REMOVEDIR to
   141     faccessat would be undefined behavior and thus treating it equivalent to
   142     AT_EACCESS is valid undefined behavior.  */
   143  #ifdef __USE_ATFILE
   144  # define AT_FDCWD		-100	/* Special value used to indicate
   145  					   the *at functions should use the
   146  					   current working directory. */
   147  # define AT_SYMLINK_NOFOLLOW	0x100	/* Do not follow symbolic links.  */
   148  # define AT_REMOVEDIR		0x200	/* Remove directory instead of
   149  					   unlinking file.  */
   150  # define AT_SYMLINK_FOLLOW	0x400	/* Follow symbolic links.  */
   151  # ifdef __USE_GNU
   152  #  define AT_NO_AUTOMOUNT	0x800	/* Suppress terminal automount
   153  					   traversal.  */
   154  #  define AT_EMPTY_PATH		0x1000	/* Allow empty relative pathname.  */
   155  # endif
   156  # define AT_EACCESS		0x200	/* Test access permitted for
   157  					   effective IDs, not real IDs.  */
   158  #endif
   159  
   160  /* Do the file control operation described by CMD on FD.
   161     The remaining arguments are interpreted depending on CMD.
   162  
   163     This function is a cancellation point and therefore not marked with
   164     __THROW.  */
   165  extern int fcntl(int __fd, int __cmd, ...);
   166  
   167  /* Open FILE and return a new file descriptor for it, or -1 on error.
   168     OFLAG determines the type of access used.  If O_CREAT or O_TMPFILE is set
   169     in OFLAG, the third argument is taken as a `mode_t', the mode of the
   170     created file.
   171  
   172     This function is a cancellation point and therefore not marked with
   173     __THROW.  */
   174  #ifndef __USE_FILE_OFFSET64
   175  extern int open(const char *__file, int __oflag, ...) __nonnull((1));
   176  #else
   177  # ifdef __REDIRECT
   178  extern int __REDIRECT(open, (const char *__file, int __oflag, ...), open64) __nonnull((1));
   179  # else
   180  #  define open open64
   181  # endif
   182  #endif
   183  #ifdef __USE_LARGEFILE64
   184  extern int open64(const char *__file, int __oflag, ...) __nonnull((1));
   185  #endif
   186  
   187  #ifdef __USE_ATFILE
   188  /* Similar to `open' but a relative path name is interpreted relative to
   189     the directory for which FD is a descriptor.
   190  
   191     NOTE: some other `openat' implementation support additional functionality
   192     through this interface, especially using the O_XATTR flag.  This is not
   193     yet supported here.
   194  
   195     This function is a cancellation point and therefore not marked with
   196     __THROW.  */
   197  # ifndef __USE_FILE_OFFSET64
   198  extern int openat(int __fd, const char *__file, int __oflag, ...) __nonnull((2));
   199  # else
   200  #  ifdef __REDIRECT
   201  extern int __REDIRECT(openat, (int __fd, const char *__file, int __oflag, ...), openat64) __nonnull((2));
   202  #  else
   203  #   define openat openat64
   204  #  endif
   205  # endif
   206  # ifdef __USE_LARGEFILE64
   207  extern int openat64(int __fd, const char *__file, int __oflag, ...) __nonnull((2));
   208  # endif
   209  #endif
   210  
   211  /* Create and open FILE, with mode MODE.  This takes an `int' MODE
   212     argument because that is what `mode_t' will be widened to.
   213  
   214     This function is a cancellation point and therefore not marked with
   215     __THROW.  */
   216  #ifndef __USE_FILE_OFFSET64
   217  extern int creat(const char *__file, mode_t __mode) __nonnull((1));
   218  #else
   219  # ifdef __REDIRECT
   220  extern int __REDIRECT(creat, (const char *__file, mode_t __mode), creat64) __nonnull((1));
   221  # else
   222  #  define creat creat64
   223  # endif
   224  #endif
   225  #ifdef __USE_LARGEFILE64
   226  extern int creat64(const char *__file, mode_t __mode) __nonnull((1));
   227  #endif
   228  
   229  #if !defined F_LOCK && (defined __USE_MISC || (defined __USE_XOPEN_EXTENDED \
   230  					       && !defined __USE_POSIX))
   231  /* NOTE: These declarations also appear in <unistd.h>; be sure to keep both
   232     files consistent.  Some systems have them there and some here, and some
   233     software depends on the macros being defined without including both.  */
   234  
   235  /* `lockf' is a simpler interface to the locking facilities of `fcntl'.
   236     LEN is always relative to the current file position.
   237     The CMD argument is one of the following.  */
   238  
   239  # define F_ULOCK 0		/* Unlock a previously locked region.  */
   240  # define F_LOCK  1		/* Lock a region for exclusive use.  */
   241  # define F_TLOCK 2		/* Test and lock a region for exclusive use.  */
   242  # define F_TEST  3		/* Test a region for other processes locks.  */
   243  
   244  # ifndef __USE_FILE_OFFSET64
   245  extern int lockf(int __fd, int __cmd, off_t __len);
   246  # else
   247  #  ifdef __REDIRECT
   248  extern int __REDIRECT(lockf, (int __fd, int __cmd, __off64_t __len), lockf64);
   249  #  else
   250  #   define lockf lockf64
   251  #  endif
   252  # endif
   253  # ifdef __USE_LARGEFILE64
   254  extern int lockf64(int __fd, int __cmd, off64_t __len);
   255  # endif
   256  #endif
   257  
   258  #ifdef __USE_XOPEN2K
   259  /* Advice the system about the expected behaviour of the application with
   260     respect to the file associated with FD.  */
   261  # ifndef __USE_FILE_OFFSET64
   262  extern int posix_fadvise(int __fd, off_t __offset, off_t __len, int __advise) __THROW;
   263  # else
   264  # ifdef __REDIRECT_NTH
   265  extern int __REDIRECT_NTH(posix_fadvise, (int __fd, __off64_t __offset, __off64_t __len, int __advise), posix_fadvise64);
   266  #  else
   267  #   define posix_fadvise posix_fadvise64
   268  #  endif
   269  # endif
   270  # ifdef __USE_LARGEFILE64
   271  extern int posix_fadvise64(int __fd, off64_t __offset, off64_t __len, int __advise) __THROW;
   272  # endif
   273  
   274  /* Reserve storage for the data of the file associated with FD.
   275  
   276     This function is a possible cancellation point and therefore not
   277     marked with __THROW.  */
   278  # ifndef __USE_FILE_OFFSET64
   279  extern int posix_fallocate(int __fd, off_t __offset, off_t __len);
   280  # else
   281  # ifdef __REDIRECT
   282  extern int __REDIRECT(posix_fallocate, (int __fd, __off64_t __offset, __off64_t __len), posix_fallocate64);
   283  #  else
   284  #   define posix_fallocate posix_fallocate64
   285  #  endif
   286  # endif
   287  # ifdef __USE_LARGEFILE64
   288  extern int posix_fallocate64(int __fd, off64_t __offset, off64_t __len);
   289  # endif
   290  #endif
   291  
   292  /* Define some inlines helping to catch common problems.  */
   293  #if __USE_FORTIFY_LEVEL > 0 && defined __fortify_function \
   294      && defined __va_arg_pack_len
   295  # include <bits/fcntl2.h>
   296  #endif
   297  
   298  __END_DECLS
   299  #endif				/* fcntl.h  */