Skip to content

Commit bfa4265

Browse files
authored
Merge pull request #3691 from virchau13s-forks/android-rtld-nodelete
feat(android): add RTLD_NODELETE
2 parents 42446e9 + 1049e5d commit bfa4265

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

libc-test/semver/android.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2029,6 +2029,7 @@ RTLD_LAZY
20292029
RTLD_LOCAL
20302030
RTLD_NOLOAD
20312031
RTLD_NOW
2032+
RTLD_NODELETE
20322033
TCA_UNSPEC
20332034
TCA_KIND
20342035
TCA_OPTIONS

src/unix/linux_like/android/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1716,6 +1716,7 @@ pub const ST_NODIRATIME: ::c_ulong = 2048;
17161716
pub const ST_RELATIME: ::c_ulong = 4096;
17171717

17181718
pub const RTLD_NOLOAD: ::c_int = 0x4;
1719+
pub const RTLD_NODELETE: ::c_int = 0x1000;
17191720

17201721
pub const SEM_FAILED: *mut sem_t = 0 as *mut sem_t;
17211722

0 commit comments

Comments
 (0)