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
ad078be4
Commit
ad078be4
authored
May 03, 2022
by
Zebediah Figura
Committed by
Alexandre Julliard
May 04, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Send AFD_POLL_READ messages before AFD_POLL_WRITE.
Signed-off-by:
Zebediah Figura
<
zfigura@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
934023d1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
sock.c
dlls/ws2_32/tests/sock.c
+1
-1
sock.c
server/sock.c
+1
-1
No files found.
dlls/ws2_32/tests/sock.c
View file @
ad078be4
...
...
@@ -5896,7 +5896,7 @@ static void test_read_events(struct event_test_ctx *ctx)
check_events
(
ctx
,
0
,
0
,
0
);
select_events
(
ctx
,
server
,
FD_ACCEPT
|
FD_CONNECT
|
FD_OOB
|
FD_READ
|
FD_WRITE
);
check_events_todo
(
ctx
,
FD_READ
,
FD_WRITE
,
200
);
check_events_todo
_event
(
ctx
,
FD_READ
,
FD_WRITE
,
200
);
check_events
(
ctx
,
0
,
0
,
0
);
ret
=
sync_recv
(
server
,
buffer
,
5
,
0
);
...
...
server/sock.c
View file @
ad078be4
...
...
@@ -505,8 +505,8 @@ static const enum afd_poll_bit event_bitorder[] =
AFD_POLL_BIT_CONNECT_ERR
,
AFD_POLL_BIT_ACCEPT
,
AFD_POLL_BIT_OOB
,
AFD_POLL_BIT_WRITE
,
AFD_POLL_BIT_READ
,
AFD_POLL_BIT_WRITE
,
AFD_POLL_BIT_RESET
,
AFD_POLL_BIT_HUP
,
AFD_POLL_BIT_CLOSE
,
...
...
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