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
fbf24103
Commit
fbf24103
authored
Apr 10, 2017
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 11, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Removed no longed needed APC from APC_ASYNC_IO reply.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
5c0e2965
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
11 deletions
+1
-11
server.c
dlls/ntdll/server.c
+0
-4
server_protocol.h
include/wine/server_protocol.h
+1
-3
protocol.def
server/protocol.def
+0
-2
trace.c
server/trace.c
+0
-2
No files found.
dlls/ntdll/server.c
View file @
fbf24103
...
...
@@ -410,11 +410,7 @@ static BOOL invoke_apc( const apc_call_t *call, apc_result_t *result )
result
->
type
=
call
->
type
;
result
->
async_io
.
status
=
(
*
user
)(
user
,
iosb
,
call
->
async_io
.
status
,
&
apc
,
&
arg
);
if
(
result
->
async_io
.
status
!=
STATUS_PENDING
)
{
result
->
async_io
.
total
=
iosb
->
Information
;
result
->
async_io
.
apc
=
wine_server_client_ptr
(
apc
);
result
->
async_io
.
arg
=
wine_server_client_ptr
(
arg
);
}
break
;
}
case
APC_VIRTUAL_ALLOC
:
...
...
include/wine/server_protocol.h
View file @
fbf24103
...
...
@@ -551,8 +551,6 @@ typedef union
{
enum
apc_type
type
;
unsigned
int
status
;
client_ptr_t
apc
;
client_ptr_t
arg
;
unsigned
int
total
;
}
async_io
;
struct
...
...
@@ -6411,6 +6409,6 @@ union generic_reply
struct
terminate_job_reply
terminate_job_reply
;
};
#define SERVER_PROTOCOL_VERSION 52
5
#define SERVER_PROTOCOL_VERSION 52
6
#endif
/* __WINE_WINE_SERVER_PROTOCOL_H */
server/protocol.def
View file @
fbf24103
...
...
@@ -567,8 +567,6 @@ typedef union
{
enum apc_type type; /* APC_ASYNC_IO */
unsigned int status; /* new status of async operation */
client_ptr_t apc; /* user APC to call */
client_ptr_t arg; /* user APC argument */
unsigned int total; /* bytes transferred */
} async_io;
struct
...
...
server/trace.c
View file @
fbf24103
...
...
@@ -229,8 +229,6 @@ static void dump_apc_result( const char *prefix, const apc_result_t *result )
case
APC_ASYNC_IO
:
fprintf
(
stderr
,
"APC_ASYNC_IO,status=%s,total=%u"
,
get_status_name
(
result
->
async_io
.
status
),
result
->
async_io
.
total
);
dump_uint64
(
",apc="
,
&
result
->
async_io
.
apc
);
dump_uint64
(
",arg="
,
&
result
->
async_io
.
arg
);
break
;
case
APC_VIRTUAL_ALLOC
:
fprintf
(
stderr
,
"APC_VIRTUAL_ALLOC,status=%s"
,
...
...
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