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
412d59d0
Commit
412d59d0
authored
Sep 07, 2019
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hmm, why is test__core giving fits on py38/libuv/travis? Can't reproduce locally.
parent
0a45f740
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
7 deletions
+10
-7
appveyor.yml
appveyor.yml
+1
-0
src/gevent/libuv/_corecffi_source.c
src/gevent/libuv/_corecffi_source.c
+9
-7
No files found.
appveyor.yml
View file @
412d59d0
...
...
@@ -11,6 +11,7 @@ environment:
# too often we get failures to resolve DNS names or failures
# to connect on AppVeyor.
GEVENTTEST_USE_RESOURCES
:
"
-network"
PYTHONTRACEMALLOC
:
10
matrix
:
...
...
src/gevent/libuv/_corecffi_source.c
View file @
412d59d0
...
...
@@ -150,32 +150,34 @@ static void _gevent_fs_poll_callback3(void* handlep, int status, const uv_stat_t
static
void
gevent_uv_walk_callback_close
(
uv_handle_t
*
handle
,
void
*
arg
)
{
if
(
handle
&&
!
uv_is_closing
(
handle
)
)
{
uv_close
(
handle
,
NULL
);
}
if
(
handle
&&
!
uv_is_closing
(
handle
)
)
{
uv_close
(
handle
,
NULL
);
}
}
static
void
gevent_close_all_handles
(
uv_loop_t
*
loop
)
{
if
(
loop
)
{
uv_walk
(
loop
,
gevent_uv_walk_callback_close
,
NULL
);
}
}
static
void
gevent_zero_timer
(
uv_timer_t
*
handle
)
{
memset
(
handle
,
0
,
sizeof
(
uv_timer_t
));
memset
(
handle
,
0
,
sizeof
(
uv_timer_t
));
}
static
void
gevent_zero_check
(
uv_check_t
*
handle
)
{
memset
(
handle
,
0
,
sizeof
(
uv_check_t
));
memset
(
handle
,
0
,
sizeof
(
uv_check_t
));
}
static
void
gevent_zero_prepare
(
uv_prepare_t
*
handle
)
{
memset
(
handle
,
0
,
sizeof
(
uv_prepare_t
));
memset
(
handle
,
0
,
sizeof
(
uv_prepare_t
));
}
static
void
gevent_zero_loop
(
uv_loop_t
*
handle
)
{
memset
(
handle
,
0
,
sizeof
(
uv_loop_t
));
memset
(
handle
,
0
,
sizeof
(
uv_loop_t
));
}
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