Skip to content

Commit eb00e57

Browse files
authored
Merge pull request #4044 from mustartt/aix-dlopen
AIX: dlopen flags for RTLD_MEMBER and RTLD_NOAUTODEFER
2 parents d01b57b + 17a88cc commit eb00e57

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
@@ -687,6 +687,8 @@ pub const RTLD_LAZY: ::c_int = 0x4;
687687
pub const RTLD_NOW: ::c_int = 0x2;
688688
pub const RTLD_GLOBAL: ::c_int = 0x10000;
689689
pub const RTLD_LOCAL: ::c_int = 0x80000;
690+
pub const RTLD_MEMBER: ::c_int = 0x40000;
691+
pub const RTLD_NOAUTODEFER: ::c_int = 0x20000;
690692
pub const RTLD_DEFAULT: *mut ::c_void = -1isize as *mut ::c_void;
691693
pub const RTLD_MYSELF: *mut ::c_void = -2isize as *mut ::c_void;
692694
pub const RTLD_NEXT: *mut ::c_void = -3isize as *mut ::c_void;

0 commit comments

Comments
 (0)