Subversion Repositories configs

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3 - 1
 
2
/* /usr/include/fcntl.h */
3
 
4
int fcntl(int fd, int cmd);
5
int open(char *file, int oflag);
6
int open64(char *file, int oflag);
7
int openat(int fd, char *file, int oflag);
8
int openat64(int fd, char *file, int oflag);
9
int creat(char *file, __mode_t mode);
10
int creat64(char *file, __mode_t mode);
11
int lockf(int fd, int cmd, __off_t len);
12
 
13
 
14
int lockf64(int fd, int cmd, __off64_t len);
15
int posix_fadvise(int fd, __off_t offset, __off_t len, int advise);
16
int posix_fadvise64(int fd, __off64_t offset, __off64_t len, int advise);
17
int posix_fallocate(int fd, __off_t offset, __off_t len);
18
int posix_fallocate64(int fd, __off64_t offset, __off64_t len);