zorbanaut

Results 1 issues of zorbanaut

I tried to speed up parsing by using ProcessPoolExecutor: ``` import concurrent.futures from elftools.elf.elffile import ELFFile elf_name = "examples/sample_exe64.elf" def parse_DIEs_in_CU(CU_offset): with open(elf_name, 'rb') as f: elffile = ELFFile(f) dwarfinfo...

patches-welcome