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
229d753b
Commit
229d753b
authored
Oct 09, 2010
by
Eric Pouech
Committed by
Alexandre Julliard
Oct 11, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Some more 64bit base address fixes.
parent
1e141eee
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
8 deletions
+10
-8
dbghelp_private.h
dlls/dbghelp/dbghelp_private.h
+2
-2
elf_module.c
dlls/dbghelp/elf_module.c
+2
-2
macho_module.c
dlls/dbghelp/macho_module.c
+2
-2
minidump.c
dlls/dbghelp/minidump.c
+4
-2
No files found.
dlls/dbghelp/dbghelp_private.h
View file @
229d753b
...
...
@@ -509,7 +509,7 @@ typedef BOOL (*enum_modules_cb)(const WCHAR*, unsigned long addr, void* user);
/* elf_module.c */
extern
BOOL
elf_enum_modules
(
HANDLE
hProc
,
enum_modules_cb
,
void
*
);
extern
BOOL
elf_fetch_file_info
(
const
WCHAR
*
name
,
DWORD
*
base
,
DWORD
*
size
,
DWORD
*
checksum
);
extern
BOOL
elf_fetch_file_info
(
const
WCHAR
*
name
,
DWORD
_PTR
*
base
,
DWORD
*
size
,
DWORD
*
checksum
);
struct
image_file_map
;
extern
BOOL
elf_load_debug_info
(
struct
module
*
module
,
struct
image_file_map
*
fmap
);
extern
struct
module
*
...
...
@@ -522,7 +522,7 @@ extern int elf_is_in_thunk_area(unsigned long addr, const struct elf_th
/* macho_module.c */
#define MACHO_NO_MAP ((const void*)-1)
extern
BOOL
macho_enum_modules
(
HANDLE
hProc
,
enum_modules_cb
,
void
*
);
extern
BOOL
macho_fetch_file_info
(
const
WCHAR
*
name
,
DWORD
*
base
,
DWORD
*
size
,
DWORD
*
checksum
);
extern
BOOL
macho_fetch_file_info
(
const
WCHAR
*
name
,
DWORD
_PTR
*
base
,
DWORD
*
size
,
DWORD
*
checksum
);
struct
macho_file_map
;
extern
BOOL
macho_load_debug_info
(
struct
module
*
module
,
struct
macho_file_map
*
fmap
);
extern
struct
module
*
...
...
dlls/dbghelp/elf_module.c
View file @
229d753b
...
...
@@ -989,7 +989,7 @@ BOOL elf_load_debug_info(struct module* module, struct image_file_map* fmap)
*
* Gathers some more information for an ELF module from a given file
*/
BOOL
elf_fetch_file_info
(
const
WCHAR
*
name
,
DWORD
*
base
,
BOOL
elf_fetch_file_info
(
const
WCHAR
*
name
,
DWORD
_PTR
*
base
,
DWORD
*
size
,
DWORD
*
checksum
)
{
struct
image_file_map
fmap
;
...
...
@@ -1502,7 +1502,7 @@ BOOL elf_synchronize_module_list(struct process* pcs)
return
FALSE
;
}
BOOL
elf_fetch_file_info
(
const
WCHAR
*
name
,
DWORD
*
base
,
BOOL
elf_fetch_file_info
(
const
WCHAR
*
name
,
DWORD
_PTR
*
base
,
DWORD
*
size
,
DWORD
*
checksum
)
{
return
FALSE
;
...
...
dlls/dbghelp/macho_module.c
View file @
229d753b
...
...
@@ -903,7 +903,7 @@ BOOL macho_load_debug_info(struct module* module, struct macho_file_map* fmap)
*
* Gathers some more information for a Mach-O module from a given file
*/
BOOL
macho_fetch_file_info
(
const
WCHAR
*
name
,
DWORD
*
base
,
BOOL
macho_fetch_file_info
(
const
WCHAR
*
name
,
DWORD
_PTR
*
base
,
DWORD
*
size
,
DWORD
*
checksum
)
{
struct
macho_file_map
fmap
;
...
...
@@ -1416,7 +1416,7 @@ BOOL macho_synchronize_module_list(struct process* pcs)
return
FALSE
;
}
BOOL
macho_fetch_file_info
(
const
WCHAR
*
name
,
DWORD
*
base
,
BOOL
macho_fetch_file_info
(
const
WCHAR
*
name
,
DWORD
_PTR
*
base
,
DWORD
*
size
,
DWORD
*
checksum
)
{
return
FALSE
;
...
...
dlls/dbghelp/minidump.c
View file @
229d753b
...
...
@@ -283,7 +283,8 @@ static BOOL fetch_elf_module_info_cb(const WCHAR* name, unsigned long base,
void
*
user
)
{
struct
dump_context
*
dc
=
user
;
DWORD
rbase
,
size
,
checksum
;
DWORD_PTR
rbase
;
DWORD
size
,
checksum
;
/* FIXME: there's no relevant timestamp on ELF modules */
/* NB: if we have a non-null base from the live-target use it (whenever
...
...
@@ -305,7 +306,8 @@ static BOOL fetch_macho_module_info_cb(const WCHAR* name, unsigned long base,
void
*
user
)
{
struct
dump_context
*
dc
=
(
struct
dump_context
*
)
user
;
DWORD
rbase
,
size
,
checksum
;
DWORD_PTR
rbase
;
DWORD
size
,
checksum
;
/* FIXME: there's no relevant timestamp on Mach-O modules */
/* NB: if we have a non-null base from the live-target use it. If we have
...
...
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