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
0601c865
Commit
0601c865
authored
Mar 28, 2015
by
Michael Müller
Committed by
Alexandre Julliard
Apr 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32: Don't return an error in WS_select when EINTR happens during timeout.
parent
4b18b0d1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
socket.c
dlls/ws2_32/socket.c
+5
-1
No files found.
dlls/ws2_32/socket.c
View file @
0601c865
...
...
@@ -4780,7 +4780,11 @@ int WINAPI WS_select(int nfds, WS_fd_set *ws_readfds,
}
timeout
=
torig
-
(
tv2
.
tv_sec
*
1000
)
-
(
tv2
.
tv_usec
+
999
)
/
1000
;
if
(
timeout
<=
0
)
break
;
if
(
timeout
<=
0
)
{
ret
=
0
;
break
;
}
}
else
break
;
}
release_poll_fds
(
ws_readfds
,
ws_writefds
,
ws_exceptfds
,
pollfds
);
...
...
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