fcntl.h - file control options
#include <fcntl.h>
The <fcntl.h> header shall define the following requests and arguments for use by the functions fcntl() and open().
Values for cmd used by fcntl() (the following values are unique) are as follows:
File descriptor flags used for fcntl() are as follows:
Values for l_type used for record locking with fcntl() (the following values are unique) are as follows:
The values used for l_whence, SEEK_SET, SEEK_CUR, and SEEK_END shall be defined as described in <unistd.h> .
The following values are file creation flags and are used in the oflag value to open(). They shall be bitwise-distinct.
File status flags used for open() and fcntl() are as follows:
Mask for use with file access modes is as follows:
File access modes used for open() and fcntl() are as follows:
The symbolic names for file modes for use as values of mode_t shall be defined as described in <sys/stat.h> .
Values for advice used by posix_fadvise() are as follows:
The application has no advice to give on its behavior with respect to the specified data. It is the default characteristic if no advice is given for an open file.
The application expects to access the specified data sequentially from lower offsets to higher offsets.
The application expects to access the specified data in a random order.
The application expects to access the specified data in the near future.
The application expects that it will not access the specified data in the near future.
The application expects to access the specified data once and then not reuse it thereafter.
The structure flock describes a file lock. It shall include the following members:
short l_type Type of lock; F_RDLCK, F_WRLCK, F_UNLCK. short l_whence Flag for starting offset. off_t l_start Relative offset in bytes. off_t l_len Size; if 0 then until EOF. pid_t l_pid Process ID of the process holding the lock; returned with F_GETLK.
The mode_t, off_t, and pid_t types shall be defined as described in <sys/types.h> .
The following shall be declared as functions and may also be defined as macros. Function prototypes shall be provided.
int creat(const char *, mode_t); int fcntl(int, int, ...); int open(const char *, int, ...); int posix_fadvise(int, off_t, size_t, int); int posix_fallocate(int, off_t, size_t);
Inclusion of the <fcntl.h> header may also make visible all symbols from <sys/stat.h> and <unistd.h>.
The following sections are informative.
<sys/stat.h> , <sys/types.h> , <unistd.h> , the System Interfaces volume of IEEE Std 1003.1-2001, creat(), exec, fcntl(), open(), posix_fadvise(), posix_fallocate(), posix_madvise()
Закладки на сайте Проследить за страницей |
Created 1996-2024 by Maxim Chirkov Добавить, Поддержать, Вебмастеру |