Skip to content

Commit

Permalink
aix: add more dlopen flags
Browse files Browse the repository at this point in the history
(backport <rust-lang#4044>)
(cherry picked from commit 17a88cc)
  • Loading branch information
Henry Jiang authored and tgross35 committed Nov 16, 2024
1 parent df0fcb0 commit e23e74f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/unix/aix/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -708,6 +708,8 @@ pub const RTLD_LAZY: ::c_int = 0x4;
pub const RTLD_NOW: ::c_int = 0x2;
pub const RTLD_GLOBAL: ::c_int = 0x10000;
pub const RTLD_LOCAL: ::c_int = 0x80000;
pub const RTLD_MEMBER: ::c_int = 0x40000;
pub const RTLD_NOAUTODEFER: ::c_int = 0x20000;
pub const RTLD_DEFAULT: *mut ::c_void = -1isize as *mut ::c_void;
pub const RTLD_MYSELF: *mut ::c_void = -2isize as *mut ::c_void;
pub const RTLD_NEXT: *mut ::c_void = -3isize as *mut ::c_void;
Expand Down

0 comments on commit e23e74f

Please sign in to comment.