dynamorio icon indicating copy to clipboard operation
dynamorio copied to clipboard

i#7046 Add Linux support to dr_create_memory_dump.

Open ivankyluk opened this issue 1 year ago • 0 comments

This is the first change to add Linux support to dr_create_memory_dump. The memory dump is written in ELF format and save under the logs directory following the WIN example.

The code is test with the following change:

  •    dr_memory_dump_spec_t spec;
    
  •    spec.size = sizeof(dr_memory_dump_spec_t);
    
  •    spec.flags = DR_MEMORY_DUMP_ELF;
    
  •    dr_create_memory_dump(&spec);
    

and use "readelf -a" to ensure the elf file is built correctly.

Issue: #7046

ivankyluk avatar Oct 18 '24 20:10 ivankyluk