diff options
author | Conrad Meyer <cem@FreeBSD.org> | 2020-11-17 19:51:47 +0000 |
---|---|---|
committer | Conrad Meyer <cem@FreeBSD.org> | 2020-11-17 19:51:47 +0000 |
commit | de774e422e7f8abf9d4c6084165c9de66f11b2de (patch) | |
tree | ff6397cf93c024779e9af0dbaec208c2b9098c82 /sys/amd64 | |
parent | 46a5f8837dff05f6581b908170aeecb811f1e95e (diff) | |
download | src-test2-de774e422e7f8abf9d4c6084165c9de66f11b2de.tar.gz src-test2-de774e422e7f8abf9d4c6084165c9de66f11b2de.zip |
Notes
Diffstat (limited to 'sys/amd64')
-rw-r--r-- | sys/amd64/linux/syscalls.master | 14 | ||||
-rw-r--r-- | sys/amd64/linux32/syscalls.master | 14 |
2 files changed, 24 insertions, 4 deletions
diff --git a/sys/amd64/linux/syscalls.master b/sys/amd64/linux/syscalls.master index e7dfd77a522b..cfa6dab84965 100644 --- a/sys/amd64/linux/syscalls.master +++ b/sys/amd64/linux/syscalls.master @@ -1792,10 +1792,20 @@ } ; Linux 2.6.39 (glibc 2.14): 303 AUE_NULL STD { - int linux_name_to_handle_at(void); + int linux_name_to_handle_at( + l_int dirfd, + const char *name, + struct l_file_handle *handle, + l_int *mnt_id, + l_int flags + ); } 304 AUE_NULL STD { - int linux_open_by_handle_at(void); + int linux_open_by_handle_at( + l_int mountdirfd, + struct l_file_handle *handle, + l_int flags + ); } 305 AUE_NULL STD { int linux_clock_adjtime(void); diff --git a/sys/amd64/linux32/syscalls.master b/sys/amd64/linux32/syscalls.master index 97d448f8d9c3..9c0cf347d7f4 100644 --- a/sys/amd64/linux32/syscalls.master +++ b/sys/amd64/linux32/syscalls.master @@ -1916,10 +1916,20 @@ } ; Linux 2.6.39: 341 AUE_NULL STD { - int linux_name_to_handle_at(void); + int linux_name_to_handle_at( + l_int dirfd, + const char *name, + struct l_file_handle *handle, + l_int *mnt_id, + l_int flags + ); } 342 AUE_NULL STD { - int linux_open_by_handle_at(void); + int linux_open_by_handle_at( + l_int mountdirfd, + struct l_file_handle *handle, + l_int flags + ); } 343 AUE_NULL STD { int linux_clock_adjtime(void); |