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
be230adb
Commit
be230adb
authored
Jul 17, 2010
by
Mike Kaplinskiy
Committed by
Alexandre Julliard
Jul 20, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: In case of hangup/error, wake up all asyncs that can no longer be completed.
parent
394a1422
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
sock.c
server/sock.c
+9
-2
No files found.
server/sock.c
View file @
be230adb
...
...
@@ -299,16 +299,23 @@ static void sock_dispatch_asyncs( struct sock *sock, int event )
{
if
(
sock
->
flags
&
WSA_FLAG_OVERLAPPED
)
{
if
(
event
&
(
POLLIN
|
POLLPRI
|
POLLERR
|
POLLHUP
)
&&
async_waiting
(
sock
->
read_q
)
)
if
(
event
&
(
POLLIN
|
POLLPRI
)
&&
async_waiting
(
sock
->
read_q
)
)
{
if
(
debug_level
)
fprintf
(
stderr
,
"activating read queue for socket %p
\n
"
,
sock
);
async_wake_up
(
sock
->
read_q
,
STATUS_ALERTED
);
}
if
(
event
&
(
POLLOUT
|
POLLERR
|
POLLHUP
)
&&
async_waiting
(
sock
->
write_q
)
)
if
(
event
&
POLLOUT
&&
async_waiting
(
sock
->
write_q
)
)
{
if
(
debug_level
)
fprintf
(
stderr
,
"activating write queue for socket %p
\n
"
,
sock
);
async_wake_up
(
sock
->
write_q
,
STATUS_ALERTED
);
}
if
(
event
&
(
POLLERR
|
POLLHUP
)
)
{
if
(
!
(
sock
->
state
&
FD_READ
)
)
async_wake_up
(
sock
->
read_q
,
STATUS_SUCCESS
);
if
(
!
(
sock
->
state
&
FD_WRITE
)
)
async_wake_up
(
sock
->
write_q
,
STATUS_SUCCESS
);
}
}
}
...
...
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