Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
90b5d928
Kaydet (Commit)
90b5d928
authored
Ock 14, 2013
tarafından
Richard Oudkerk
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #10527: Use poll() instead of select() for multiprocessing pipes
üst
80a9fd77
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
0 deletions
+35
-0
NEWS
Misc/NEWS
+2
-0
socket_connection.c
Modules/_multiprocessing/socket_connection.c
+33
-0
No files found.
Misc/NEWS
Dosyayı görüntüle @
90b5d928
...
...
@@ -186,6 +186,8 @@ Core and Builtins
Library
-------
-
Issue
#
10527
:
Use
poll
()
instead
of
select
()
for
multiprocessing
pipes
.
-
Issue
#
9720
:
zipfile
now
writes
correct
local
headers
for
files
larger
than
4
GiB
.
...
...
Modules/_multiprocessing/socket_connection.c
Dosyayı görüntüle @
90b5d928
...
...
@@ -8,6 +8,10 @@
#include "multiprocessing.h"
#if defined(HAVE_POLL) && !defined(HAVE_BROKEN_POLL)
# include "poll.h"
#endif
#ifdef MS_WINDOWS
# define WRITE(h, buffer, length) send((SOCKET)h, buffer, length, 0)
# define READ(h, buffer, length) recv((SOCKET)h, buffer, length, 0)
...
...
@@ -158,6 +162,34 @@ conn_recv_string(ConnectionObject *conn, char *buffer,
static
int
conn_poll
(
ConnectionObject
*
conn
,
double
timeout
,
PyThreadState
*
_save
)
{
#if defined(HAVE_POLL) && !defined(HAVE_BROKEN_POLL)
int
res
;
struct
pollfd
p
;
p
.
fd
=
(
int
)
conn
->
handle
;
p
.
events
=
POLLIN
|
POLLPRI
;
p
.
revents
=
0
;
if
(
timeout
<
0
)
{
res
=
poll
(
&
p
,
1
,
-
1
);
}
else
{
res
=
poll
(
&
p
,
1
,
(
int
)(
timeout
*
1000
+
0
.
5
));
}
if
(
res
<
0
)
{
return
MP_SOCKET_ERROR
;
}
else
if
(
p
.
revents
&
(
POLLNVAL
|
POLLERR
))
{
Py_BLOCK_THREADS
PyErr_SetString
(
PyExc_IOError
,
"poll() gave POLLNVAL or POLLERR"
);
Py_UNBLOCK_THREADS
return
MP_EXCEPTION_HAS_BEEN_SET
;
}
else
if
(
p
.
revents
!=
0
)
{
return
TRUE
;
}
else
{
assert
(
res
==
0
);
return
FALSE
;
}
#else
int
res
;
fd_set
rfds
;
...
...
@@ -193,6 +225,7 @@ conn_poll(ConnectionObject *conn, double timeout, PyThreadState *_save)
assert
(
res
==
0
);
return
FALSE
;
}
#endif
}
/*
...
...
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