Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
e374bcff
Commit
e374bcff
authored
Mar 05, 2007
by
Eric Pouech
Committed by
Alexandre Julliard
Mar 06, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: We no longer need to force for ELF modules in minidumps as we do it automatically now.
parent
87155d65
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
6 deletions
+0
-6
tgt_minidump.c
programs/winedbg/tgt_minidump.c
+0
-6
No files found.
programs/winedbg/tgt_minidump.c
View file @
e374bcff
...
@@ -44,7 +44,6 @@ void minidump_write(const char* file, const EXCEPTION_RECORD* rec)
...
@@ -44,7 +44,6 @@ void minidump_write(const char* file, const EXCEPTION_RECORD* rec)
HANDLE
hFile
;
HANDLE
hFile
;
MINIDUMP_EXCEPTION_INFORMATION
mei
;
MINIDUMP_EXCEPTION_INFORMATION
mei
;
EXCEPTION_POINTERS
ep
;
EXCEPTION_POINTERS
ep
;
DWORD
wine_opt
;
hFile
=
CreateFile
(
file
,
GENERIC_READ
|
GENERIC_WRITE
,
0
,
NULL
,
CREATE_ALWAYS
,
hFile
=
CreateFile
(
file
,
GENERIC_READ
|
GENERIC_WRITE
,
0
,
NULL
,
CREATE_ALWAYS
,
FILE_ATTRIBUTE_NORMAL
,
NULL
);
FILE_ATTRIBUTE_NORMAL
,
NULL
);
...
@@ -59,14 +58,9 @@ void minidump_write(const char* file, const EXCEPTION_RECORD* rec)
...
@@ -59,14 +58,9 @@ void minidump_write(const char* file, const EXCEPTION_RECORD* rec)
ep
.
ContextRecord
=
&
dbg_context
;
ep
.
ContextRecord
=
&
dbg_context
;
mei
.
ClientPointers
=
FALSE
;
mei
.
ClientPointers
=
FALSE
;
}
}
/* this is a wine specific options to return also ELF modules in the
* dumping
*/
SymSetOptions
((
wine_opt
=
SymGetOptions
())
|
0x40000000
);
MiniDumpWriteDump
(
dbg_curr_process
->
handle
,
dbg_curr_process
->
pid
,
MiniDumpWriteDump
(
dbg_curr_process
->
handle
,
dbg_curr_process
->
pid
,
hFile
,
MiniDumpNormal
/*|MiniDumpWithDataSegs*/
,
hFile
,
MiniDumpNormal
/*|MiniDumpWithDataSegs*/
,
rec
?
&
mei
:
NULL
,
NULL
,
NULL
);
rec
?
&
mei
:
NULL
,
NULL
,
NULL
);
SymSetOptions
(
wine_opt
);
CloseHandle
(
hFile
);
CloseHandle
(
hFile
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment