Skip to content

Commit a1e0f47

Browse files
committed
Auto merge of #2308 - flxo:master, r=JohnTitor
Add SYS_fcntl to aarch64 android The fcntl syscall is supported on aarch64-linux-android [googlesource.com](https://android.googlesource.com/platform/bionic/+/bc1b267454cd305d2bbaa0f22914b98a23ef1ffa/libc/kernel/uapi/asm-generic/unistd.h#62)
2 parents 80e4a26 + d5db1db commit a1e0f47

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

libc-test/semver/android-aarch64.txt

+1
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ HWCAP2_SVESHA3
99
HWCAP2_SVESM4
1010
SYS_arch_specific_syscall
1111
SYS_syscalls
12+
SYS_fcntl

src/unix/linux_like/android/b64/aarch64/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ pub const SYS_epoll_ctl: ::c_long = 21;
126126
pub const SYS_epoll_pwait: ::c_long = 22;
127127
pub const SYS_dup: ::c_long = 23;
128128
pub const SYS_dup3: ::c_long = 24;
129+
pub const SYS_fcntl: ::c_long = 25;
129130
pub const SYS_inotify_init1: ::c_long = 26;
130131
pub const SYS_inotify_add_watch: ::c_long = 27;
131132
pub const SYS_inotify_rm_watch: ::c_long = 28;

0 commit comments

Comments
 (0)