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
8d9fbe59
Commit
8d9fbe59
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: Forward the correct error to asyncs.
parent
be230adb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
sock.c
server/sock.c
+6
-4
No files found.
server/sock.c
View file @
8d9fbe59
...
...
@@ -295,7 +295,7 @@ static inline int sock_error( struct fd *fd )
return
optval
;
}
static
void
sock_dispatch_asyncs
(
struct
sock
*
sock
,
int
event
)
static
void
sock_dispatch_asyncs
(
struct
sock
*
sock
,
int
event
,
int
error
)
{
if
(
sock
->
flags
&
WSA_FLAG_OVERLAPPED
)
{
...
...
@@ -311,10 +311,12 @@ static void sock_dispatch_asyncs( struct sock *sock, int event )
}
if
(
event
&
(
POLLERR
|
POLLHUP
)
)
{
int
status
=
sock_get_ntstatus
(
error
);
if
(
!
(
sock
->
state
&
FD_READ
)
)
async_wake_up
(
sock
->
read_q
,
STATUS_SUCCESS
);
async_wake_up
(
sock
->
read_q
,
status
);
if
(
!
(
sock
->
state
&
FD_WRITE
)
)
async_wake_up
(
sock
->
write_q
,
STATUS_SUCCESS
);
async_wake_up
(
sock
->
write_q
,
status
);
}
}
}
...
...
@@ -449,7 +451,7 @@ static void sock_poll_event( struct fd *fd, int event )
event
|=
POLLHUP
;
}
sock_dispatch_asyncs
(
sock
,
event
);
sock_dispatch_asyncs
(
sock
,
event
,
error
);
sock_dispatch_events
(
sock
,
prevstate
,
event
,
error
);
/* if anyone is stupid enough to wait on the socket object itself,
...
...
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