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
135f2e1b
Commit
135f2e1b
authored
Nov 24, 2006
by
Eric Pouech
Committed by
Alexandre Julliard
Nov 27, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Host references lookup.
Since more and more information in now available through the CPU registers, those require DLV_HOST access to be a bit better handled than it is...
parent
62f16d3c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
4 deletions
+0
-4
memory.c
programs/winedbg/memory.c
+0
-2
types.c
programs/winedbg/types.c
+0
-2
No files found.
programs/winedbg/memory.c
View file @
135f2e1b
...
...
@@ -394,7 +394,6 @@ static void print_typed_basic(const struct dbg_lvalue* lvalue)
break
;
case
SymTagArrayType
:
case
SymTagUDT
:
assert
(
lvalue
->
cookie
==
DLV_TARGET
);
if
(
!
memory_read_value
(
lvalue
,
sizeof
(
val_ptr
),
&
val_ptr
))
return
;
dbg_printf
(
"%p"
,
val_ptr
);
break
;
...
...
@@ -402,7 +401,6 @@ static void print_typed_basic(const struct dbg_lvalue* lvalue)
{
BOOL
ok
=
FALSE
;
assert
(
lvalue
->
cookie
==
DLV_TARGET
);
/* FIXME: it depends on underlying type for enums
* (not supported yet in dbghelp)
* Assuming 4 as for an int
...
...
programs/winedbg/types.c
View file @
135f2e1b
...
...
@@ -106,12 +106,10 @@ long int types_extract_as_integer(const struct dbg_lvalue* lvalue)
break
;
case
SymTagArrayType
:
case
SymTagUDT
:
assert
(
lvalue
->
cookie
==
DLV_TARGET
);
if
(
!
memory_read_value
(
lvalue
,
sizeof
(
rtn
),
&
rtn
))
RaiseException
(
DEBUG_STATUS_INTERNAL_ERROR
,
0
,
0
,
NULL
);
break
;
case
SymTagEnum
:
assert
(
lvalue
->
cookie
==
DLV_TARGET
);
if
(
!
memory_read_value
(
lvalue
,
sizeof
(
rtn
),
&
rtn
))
RaiseException
(
DEBUG_STATUS_INTERNAL_ERROR
,
0
,
0
,
NULL
);
break
;
...
...
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