diff options
author | Khem Raj <raj.khem@gmail.com> | 2018-09-12 18:02:11 -0700 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-09-12 21:28:39 -0400 |
commit | 3e14bbcd1979376b188bfabb816ff828608fb5d7 (patch) | |
tree | 746a6fd79b69d8d22ad961ec1e18035af7daea48 /include | |
parent | 5e46e8d4b0fee11a5d2ea12d0d21ed0bff6db855 (diff) | |
download | musl-3e14bbcd1979376b188bfabb816ff828608fb5d7.tar.gz |
wireup linux/name_to_handle_at and name_to_handle_at syscalls
Diffstat (limited to 'include')
-rw-r--r-- | include/fcntl.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/fcntl.h b/include/fcntl.h index 6d8edcd1..99b21759 100644 --- a/include/fcntl.h +++ b/include/fcntl.h @@ -155,6 +155,11 @@ int lockf(int, int, off_t); #define F_OWNER_PID 1 #define F_OWNER_PGRP 2 #define F_OWNER_GID 2 +struct file_handle { + unsigned handle_bytes; + int handle_type; + unsigned char f_handle[]; +}; struct f_owner_ex { int type; pid_t pid; @@ -170,6 +175,8 @@ struct f_owner_ex { #define SPLICE_F_GIFT 8 int fallocate(int, int, off_t, off_t); #define fallocate64 fallocate +int name_to_handle_at(int, const char *, struct file_handle *, int *, int); +int open_by_handle_at(int, struct file_handle *, int); ssize_t readahead(int, off_t, size_t); int sync_file_range(int, off_t, off_t, unsigned); ssize_t vmsplice(int, const struct iovec *, size_t, unsigned); |