Skip to content

Commit e23e74f

Browse files
mustartttgross35
authored andcommitted
aix: add more dlopen flags
(backport <rust-lang#4044>) (cherry picked from commit 17a88cc)
1 parent df0fcb0 commit e23e74f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/unix/aix/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -708,6 +708,8 @@ pub const RTLD_LAZY: ::c_int = 0x4;
708708
pub const RTLD_NOW: ::c_int = 0x2;
709709
pub const RTLD_GLOBAL: ::c_int = 0x10000;
710710
pub const RTLD_LOCAL: ::c_int = 0x80000;
711+
pub const RTLD_MEMBER: ::c_int = 0x40000;
712+
pub const RTLD_NOAUTODEFER: ::c_int = 0x20000;
711713
pub const RTLD_DEFAULT: *mut ::c_void = -1isize as *mut ::c_void;
712714
pub const RTLD_MYSELF: *mut ::c_void = -2isize as *mut ::c_void;
713715
pub const RTLD_NEXT: *mut ::c_void = -3isize as *mut ::c_void;

0 commit comments

Comments
 (0)