Skip to content

Commit bec3892

Browse files
rtzoellertgross35
authored andcommitted
android: add FUTEX_LOCK_PI2
(apply <#3635> to `main`) (cherry picked from commit fceb18e)
1 parent 7ce9ffa commit bec3892

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
@@ -3017,6 +3017,7 @@ pub const FUTEX_WAIT_BITSET: ::c_int = 9;
30173017
pub const FUTEX_WAKE_BITSET: ::c_int = 10;
30183018
pub const FUTEX_WAIT_REQUEUE_PI: ::c_int = 11;
30193019
pub const FUTEX_CMP_REQUEUE_PI: ::c_int = 12;
3020+
pub const FUTEX_LOCK_PI2: ::c_int = 13;
30203021

30213022
pub const FUTEX_PRIVATE_FLAG: ::c_int = 128;
30223023
pub const FUTEX_CLOCK_REALTIME: ::c_int = 256;

0 commit comments

Comments
 (0)