We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a7628d commit 4ec4db3Copy full SHA for 4ec4db3
src/symbolize/gimli.rs
@@ -278,6 +278,11 @@ struct Cache {
278
struct Library {
279
name: OsString,
280
#[cfg(target_os = "aix")]
281
+ /// On AIX, the library mmapped can be a member of an big-archive file.
282
+ /// For example, an big-archive named libfoo.a contains libbar.so,
283
+ /// one can use `dlopen("libfoo.a(libbar.so)", RTLD_MEMBER | RTLD_LAZY)`
284
+ /// to use the `libbar.so` library. In this case, only `libbar.so` is
285
+ /// mmapped, not the whole `libfoo.a`.
286
member_name: OsString,
287
/// Segments of this library loaded into memory, and where they're loaded.
288
segments: Vec<LibrarySegment>,
0 commit comments