Cygwin: Drop excluded regions list from dumper
Drop excluded regions, now it's always empty
This commit is contained in:
@@ -62,22 +62,6 @@ typedef struct _process_entity
|
||||
struct _process_entity* next;
|
||||
} process_entity;
|
||||
|
||||
class exclusion
|
||||
{
|
||||
public:
|
||||
size_t last;
|
||||
size_t size;
|
||||
size_t step;
|
||||
process_mem_region* region;
|
||||
|
||||
exclusion ( size_t step ) { last = size = 0;
|
||||
this->step = step;
|
||||
region = NULL; }
|
||||
~exclusion () { free ( region ); }
|
||||
int add ( LPBYTE mem_base, SIZE_T mem_size );
|
||||
int sort_and_check ();
|
||||
};
|
||||
|
||||
#define PAGE_BUFFER_SIZE 4096
|
||||
|
||||
class dumper
|
||||
@@ -87,7 +71,6 @@ class dumper
|
||||
HANDLE hProcess;
|
||||
process_entity* list;
|
||||
process_entity* last;
|
||||
exclusion* excl_list;
|
||||
|
||||
char* file_name;
|
||||
bfd* core_bfd;
|
||||
|
Reference in New Issue
Block a user