Skip to content

Commit 954e642

Browse files
committed
Remove unused method; use get_mapinfo instead
1 parent 16de073 commit 954e642

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

qiling/os/memory.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -493,10 +493,6 @@ def map(self, addr: int, size: int, perms: int = UC_PROT_ALL, info: str = None):
493493
self.ql.uc.mem_map(addr, size, perms)
494494
self.add_mapinfo(addr, addr + size, perms, info or '[mapped]')
495495

496-
def get_mapped(self):
497-
for idx, val in enumerate(self.ql.uc.mem_regions()):
498-
self.ql.log.info(idx, list(map(hex, val)))
499-
500496
# A Simple Heap Implementation
501497
class Chunk():
502498
def __init__(self, address: int, size: int):

0 commit comments

Comments
 (0)