summaryrefslogtreecommitdiffstats
path: root/etc/latrace.d/headers/fcntl.h
blob: d4eab510df08b6b9507383f579cd0a493d952eaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

/* /usr/include/fcntl.h */

int fcntl(int fd, int cmd);
int open(char *file, int oflag);
int open64(char *file, int oflag);
int openat(int fd, char *file, int oflag);
int openat64(int fd, char *file, int oflag);
int creat(char *file, __mode_t mode);
int creat64(char *file, __mode_t mode);
int lockf(int fd, int cmd, __off_t len);


int lockf64(int fd, int cmd, __off64_t len);
int posix_fadvise(int fd, __off_t offset, __off_t len, int advise);
int posix_fadvise64(int fd, __off64_t offset, __off64_t len, int advise);
int posix_fallocate(int fd, __off_t offset, __off_t len);
int posix_fallocate64(int fd, __off64_t offset, __off64_t len);