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
e525e499
Commit
e525e499
authored
Aug 18, 2018
by
Zebediah Figura
Committed by
Alexandre Julliard
Aug 20, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg/gdbproxy: Silence some noisy debug messages.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
37fdbf9a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
gdbproxy.c
programs/winedbg/gdbproxy.c
+3
-3
No files found.
programs/winedbg/gdbproxy.c
View file @
e525e499
...
...
@@ -434,7 +434,7 @@ static void handle_debug_event(struct gdb_context* gdbctx, DEBUG_EVENT* de)
case
EXCEPTION_DEBUG_EVENT
:
assert
(
dbg_curr_thread
);
fprintf
(
stderr
,
"%08x:%08x: exception code=0x%08x
\n
"
,
de
->
dwProcessId
,
TRACE
(
"%08x:%08x: exception code=0x%08x
\n
"
,
de
->
dwProcessId
,
de
->
dwThreadId
,
de
->
u
.
Exception
.
ExceptionRecord
.
ExceptionCode
);
if
(
fetch_context
(
gdbctx
,
dbg_curr_thread
->
handle
,
&
gdbctx
->
context
))
...
...
@@ -1286,7 +1286,7 @@ static enum packet_return packet_read_register(struct gdb_context* gdbctx)
reg
=
hex_to_int
(
gdbctx
->
in_packet
,
gdbctx
->
in_packet_len
);
if
(
reg
>=
gdbctx
->
process
->
be_cpu
->
gdb_num_regs
)
{
FIXME
(
"Unhandled register %u
\n
"
,
reg
);
WARN
(
"Unhandled register %u
\n
"
,
reg
);
return
packet_error
;
}
if
(
dbg_curr_thread
!=
gdbctx
->
other_thread
&&
gdbctx
->
other_thread
)
...
...
@@ -1315,7 +1315,7 @@ static enum packet_return packet_write_register(struct gdb_context* gdbctx)
reg
=
strtoul
(
gdbctx
->
in_packet
,
&
ptr
,
16
);
if
(
ptr
==
NULL
||
reg
>=
gdbctx
->
process
->
be_cpu
->
gdb_num_regs
||
*
ptr
++
!=
'='
)
{
FIXME
(
"Unhandled register %s
\n
"
,
WARN
(
"Unhandled register %s
\n
"
,
debugstr_an
(
gdbctx
->
in_packet
,
gdbctx
->
in_packet_len
));
/* FIXME: if just the reg is above cpu_num_regs, don't tell gdb
* it wouldn't matter too much, and it fakes our support for all regs
...
...
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