summaryrefslogtreecommitdiffstats
path: root/etc/latrace.d/headers/fcntl.h
diff options
context:
space:
mode:
Diffstat (limited to 'etc/latrace.d/headers/fcntl.h')
-rw-r--r--etc/latrace.d/headers/fcntl.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/etc/latrace.d/headers/fcntl.h b/etc/latrace.d/headers/fcntl.h
new file mode 100644
index 0000000..d4eab51
--- /dev/null
+++ b/etc/latrace.d/headers/fcntl.h
@@ -0,0 +1,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);