Skip to content

Commit 832151f

Browse files
rtzoellertgross35
authored andcommitted
android: add FUTEX_LOCK_PI2
(apply <#3635> to `main`) (cherry picked from commit fceb18e)
1 parent 15f6c35 commit 832151f

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

libc-test/semver/android.txt

+1
Original file line numberDiff line numberDiff line change
@@ -653,6 +653,7 @@ FUTEX_CMP_REQUEUE
653653
FUTEX_CMP_REQUEUE_PI
654654
FUTEX_FD
655655
FUTEX_LOCK_PI
656+
FUTEX_LOCK_PI2
656657
FUTEX_PRIVATE_FLAG
657658
FUTEX_REQUEUE
658659
FUTEX_TRYLOCK_PI

src/unix/linux_like/android/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -3019,6 +3019,7 @@ pub const FUTEX_WAIT_BITSET: ::c_int = 9;
30193019
pub const FUTEX_WAKE_BITSET: ::c_int = 10;
30203020
pub const FUTEX_WAIT_REQUEUE_PI: ::c_int = 11;
30213021
pub const FUTEX_CMP_REQUEUE_PI: ::c_int = 12;
3022+
pub const FUTEX_LOCK_PI2: ::c_int = 13;
30223023

30233024
pub const FUTEX_PRIVATE_FLAG: ::c_int = 128;
30243025
pub const FUTEX_CLOCK_REALTIME: ::c_int = 256;

0 commit comments

Comments
 (0)