chore(dso): remove unused members

Signed-off-by: Anhad Singh <andypython@protonmail.com>
This commit is contained in:
Anhad Singh
2025-01-18 21:20:10 +11:00
parent 3440985729
commit e3dc5d0617
-4
View File
@@ -235,8 +235,6 @@ pub struct DSO {
pub entry_point: usize,
/// Loaded library in-memory data
pub mmap: &'static [u8],
pub global_syms: BTreeMap<String, Symbol>,
pub weak_syms: BTreeMap<String, Symbol>,
pub tls_module_id: usize,
pub tls_offset: usize,
@@ -281,8 +279,6 @@ impl DSO {
dlopened,
entry_point,
mmap,
global_syms: BTreeMap::new(),
weak_syms: BTreeMap::new(),
tls_module_id: if tcb_master.is_some() {
tls_module_id
} else {