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
4dfa8a83
Commit
4dfa8a83
authored
Dec 10, 2019
by
Francois Gouget
Committed by
Alexandre Julliard
Dec 10, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Fix the spelling of various messages and the README.
Signed-off-by:
Francois Gouget
<
fgouget@free.fr
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
79c96783
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
README
programs/winedbg/README
+1
-1
gdbproxy.c
programs/winedbg/gdbproxy.c
+2
-2
types.c
programs/winedbg/types.c
+1
-1
No files found.
programs/winedbg/README
View file @
4dfa8a83
This is the core of the Wine debugger. The reverse assember
This is the core of the Wine debugger. The reverse assemb
l
er
was stolen from Mach more or less intact. It turns out that there are
two variables that are set differently if you are reverse assembling
16 bit code, and on the whole it seems to work.
...
...
programs/winedbg/gdbproxy.c
View file @
4dfa8a83
...
...
@@ -569,7 +569,7 @@ static void wait_for_debuggee(struct gdb_context* gdbctx)
{
if
(
check_for_interrupt
(
gdbctx
))
{
if
(
!
DebugBreakProcess
(
gdbctx
->
process
->
handle
))
{
ERR
(
"Failed to break into debugee
\n
"
);
ERR
(
"Failed to break into debug
g
ee
\n
"
);
break
;
}
WaitForDebugEvent
(
&
de
,
INFINITE
);
...
...
@@ -624,7 +624,7 @@ static void get_process_info(struct gdb_context* gdbctx, char* buffer, size_t le
case
ABOVE_NORMAL_PRIORITY_CLASS
:
strcat
(
buffer
,
", above normal priority"
);
break
;
#endif
#ifdef BELOW_NORMAL_PRIORITY_CLASS
case
BELOW_NORMAL_PRIORITY_CLASS
:
strcat
(
buffer
,
", below normal prio
t
ity"
);
break
;
case
BELOW_NORMAL_PRIORITY_CLASS
:
strcat
(
buffer
,
", below normal prio
r
ity"
);
break
;
#endif
case
HIGH_PRIORITY_CLASS
:
strcat
(
buffer
,
", high priority"
);
break
;
case
IDLE_PRIORITY_CLASS
:
strcat
(
buffer
,
", idle priority"
);
break
;
...
...
programs/winedbg/types.c
View file @
4dfa8a83
...
...
@@ -168,7 +168,7 @@ BOOL types_store_value(struct dbg_lvalue* lvalue_to, const struct dbg_lvalue* lv
if
(
!
types_get_info
(
&
lvalue_to
->
type
,
TI_GET_LENGTH
,
&
size
))
return
FALSE
;
if
(
sizeof
(
val
)
<
size
)
{
dbg_printf
(
"
U
nsufficient size
\n
"
);
dbg_printf
(
"
I
nsufficient size
\n
"
);
return
FALSE
;
}
/* FIXME: should support floats as well */
...
...
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