X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Ffcntl.h;h=85f867b338a0bfcc776a2208f81dcef569079f2c;hb=40bd1726b6aa93a8311a77a1fec6da0fe0489fd0;hp=016653cfc30822f9226508da3b21e846a39aef88;hpb=ac12eb91bd7aa6f1f1642de1350c4f29ea0f4d08;p=musl diff --git a/include/fcntl.h b/include/fcntl.h index 016653cf..85f867b3 100644 --- a/include/fcntl.h +++ b/include/fcntl.h @@ -29,6 +29,32 @@ int openat(int, const char *, int, ...); int posix_fadvise(int, off_t, off_t, int); int posix_fallocate(int, off_t, off_t); +#define O_ACCMODE 03 +#define O_RDONLY 00 +#define O_WRONLY 01 +#define O_RDWR 02 + +#define F_DUPFD_CLOEXEC 1030 + +#define F_RDLCK 0 +#define F_WRLCK 1 +#define F_UNLCK 2 + +#define FD_CLOEXEC 1 + +#define AT_FDCWD (-100) +#define AT_SYMLINK_NOFOLLOW 0x100 +#define AT_REMOVEDIR 0x200 +#define AT_SYMLINK_FOLLOW 0x400 +#define AT_EACCESS 0x200 + +#define POSIX_FADV_NORMAL 0 +#define POSIX_FADV_RANDOM 1 +#define POSIX_FADV_SEQUENTIAL 2 +#define POSIX_FADV_WILLNEED 3 +#define POSIX_FADV_DONTNEED 4 +#define POSIX_FADV_NOREUSE 5 + #undef SEEK_SET #undef SEEK_CUR #undef SEEK_END @@ -54,6 +80,35 @@ int posix_fallocate(int, off_t, off_t); #define S_IRWXO 0007 #endif +#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) +#define FAPPEND O_APPEND +#define FFSYNC O_FSYNC +#define FASYNC O_ASYNC +#define FNONBLOCK O_NONBLOCK +#define FNDELAY O_NDELAY + +#define F_OK 0 +#define R_OK 4 +#define W_OK 2 +#define X_OK 1 +#define F_ULOCK 0 +#define F_LOCK 1 +#define F_TLOCK 2 +#define F_TEST 3 + +int lockf(int, int, off_t); +#endif + +#ifdef _LARGEFILE64_SOURCE +#define open64 open +#define openat64 openat +#define creat64 creat +#define lockf64 lockf +#define posix_fadvise64 posix_fadvise +#define posix_fallocate64 posix_fallocate +#define off64_t off_t +#endif + #ifdef __cplusplus } #endif