Skip to content

Commit

Permalink
add more dlopen flags
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry Jiang committed Nov 15, 2024
1 parent 3a0b044 commit 17a88cc
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 @@ -687,6 +687,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 17a88cc

Please sign in to comment.