Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
c39172cc
Commit
c39172cc
authored
May 16, 2012
by
Denis Bilenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libev: pull minor updates from cvs
parent
4f8666ed
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
libev/Changes
libev/Changes
+2
-0
libev/ev.c
libev/ev.c
+2
-3
No files found.
libev/Changes
View file @
c39172cc
...
@@ -5,6 +5,8 @@ TODO: EV_STANDALONE == NO_HASSEL (do not use clock_gettime in ev_standalone)
...
@@ -5,6 +5,8 @@ TODO: EV_STANDALONE == NO_HASSEL (do not use clock_gettime in ev_standalone)
TODO: faq, process a thing in each iteration
TODO: faq, process a thing in each iteration
TODO: dbeugging tips, ev_verify, ev_init twice
TODO: dbeugging tips, ev_verify, ev_init twice
- destroying a non-default loop would stop the global waitpid
watcher (Denis Bilenko).
- queueing pending watchers of higher priority from a watcher now invokes
- queueing pending watchers of higher priority from a watcher now invokes
them in a timely fashion (reported by Denis Bilenko).
them in a timely fashion (reported by Denis Bilenko).
- add throw() to all libev functions that cannot throw exceptions, for
- add throw() to all libev functions that cannot throw exceptions, for
...
...
libev/ev.c
View file @
c39172cc
...
@@ -1922,10 +1922,9 @@ pipecb (EV_P_ ev_io *iow, int revents)
...
@@ -1922,10 +1922,9 @@ pipecb (EV_P_ ev_io *iow, int revents)
#ifdef _WIN32
#ifdef _WIN32
WSABUF
buf
;
WSABUF
buf
;
DWORD
recvd
;
DWORD
recvd
;
DWORD
flags
;
DWORD
flags
=
0
;
buf
.
buf
=
dummy
;
buf
.
buf
=
dummy
;
buf
.
len
=
sizeof
(
dummy
);
buf
.
len
=
sizeof
(
dummy
);
flags
=
0
;
if
(
WSARecv
(
EV_FD_TO_WIN32_HANDLE
(
evpipe
[
0
]),
&
buf
,
1
,
&
recvd
,
&
flags
,
0
,
0
))
if
(
WSARecv
(
EV_FD_TO_WIN32_HANDLE
(
evpipe
[
0
]),
&
buf
,
1
,
&
recvd
,
&
flags
,
0
,
0
))
{
{
int
error
;
int
error
;
...
@@ -2380,7 +2379,7 @@ ev_loop_destroy (EV_P)
...
@@ -2380,7 +2379,7 @@ ev_loop_destroy (EV_P)
#endif
#endif
#if EV_CHILD_ENABLE
#if EV_CHILD_ENABLE
if
(
ev_
default_loop_ptr
==
EV_A
)
if
(
ev_
is_default_loop
(
EV_A
)
)
{
{
if
(
ev_is_active
(
&
childev
))
if
(
ev_is_active
(
&
childev
))
{
{
...
...
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