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
9696ea50
Commit
9696ea50
authored
Jun 23, 2014
by
Sebastian Lackner
Committed by
Alexandre Julliard
Jun 23, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Get rid of RIP_EVENT union elements.
parent
0114be09
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
18 deletions
+2
-18
server_protocol.h
include/wine/server_protocol.h
+1
-7
debugger.c
server/debugger.c
+1
-1
protocol.def
server/protocol.def
+0
-6
trace.c
server/trace.c
+0
-4
No files found.
include/wine/server_protocol.h
View file @
9696ea50
...
...
@@ -112,12 +112,6 @@ typedef union
int
__pad
;
mod_handle_t
base
;
}
unload_dll
;
struct
{
int
code
;
int
error
;
int
type
;
}
rip_info
;
}
debug_event_t
;
...
...
@@ -5840,6 +5834,6 @@ union generic_reply
struct
set_suspend_context_reply
set_suspend_context_reply
;
};
#define SERVER_PROTOCOL_VERSION 45
5
#define SERVER_PROTOCOL_VERSION 45
6
#endif
/* __WINE_WINE_SERVER_PROTOCOL_H */
server/debugger.c
View file @
9696ea50
...
...
@@ -211,7 +211,7 @@ static int fill_unload_dll_event( struct debug_event *event, const void *arg )
typedef
int
(
*
fill_event_func
)(
struct
debug_event
*
event
,
const
void
*
arg
);
#define NB_DEBUG_EVENTS
OUTPUT_DEBUG_STRING_EVENT
/* RIP_EVENT not supported */
#define NB_DEBUG_EVENTS
UNLOAD_DLL_DEBUG_EVENT
static
const
fill_event_func
fill_debug_event
[
NB_DEBUG_EVENTS
]
=
{
...
...
server/protocol.def
View file @
9696ea50
...
...
@@ -128,12 +128,6 @@ typedef union
int __pad;
mod_handle_t base; /* base address of the dll */
} unload_dll;
struct
{
int code; /* RIP_EVENT */
int error; /* ??? */
int type; /* ??? */
} rip_info;
} debug_event_t;
/* supported CPU types */
...
...
server/trace.c
View file @
9696ea50
...
...
@@ -712,10 +712,6 @@ static void dump_varargs_debug_event( const char *prefix, data_size_t size )
dump_uint64
(
",base="
,
&
event
.
unload_dll
.
base
);
fputc
(
'}'
,
stderr
);
break
;
case
RIP_EVENT
:
fprintf
(
stderr
,
"%s{rip,err=%d,type=%d}"
,
prefix
,
event
.
rip_info
.
error
,
event
.
rip_info
.
type
);
break
;
case
0
:
/* zero is the code returned on timeouts */
fprintf
(
stderr
,
"%s{}"
,
prefix
);
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