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
bbd8bec3
Kaydet (Commit)
bbd8bec3
authored
Eyl 10, 2011
tarafından
Jesus Cea
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Close #12950: multiprocessing "test_fd_transfer" fails under OpenIndiana
üst
54b01498
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
11 deletions
+23
-11
multiprocessing.c
Modules/_multiprocessing/multiprocessing.c
+23
-11
No files found.
Modules/_multiprocessing/multiprocessing.c
Dosyayı görüntüle @
bbd8bec3
...
...
@@ -86,31 +86,37 @@ ProcessingCtrlHandler(DWORD dwCtrlType)
/* Functions for transferring file descriptors between processes.
Reimplements some of the functionality of the fdcred
module at http://www.mca-ltd.com/resources/fdcred_1.tgz. */
/* Based in http://resin.csoft.net/cgi-bin/man.cgi?section=3&topic=CMSG_DATA */
static
PyObject
*
multiprocessing_sendfd
(
PyObject
*
self
,
PyObject
*
args
)
{
int
conn
,
fd
,
res
;
char
dummy_char
;
char
buf
[
CMSG_SPACE
(
sizeof
(
int
))];
struct
msghdr
msg
=
{
0
};
struct
iovec
dummy_iov
;
char
dummy_char
;
struct
msghdr
msg
;
struct
cmsghdr
*
cmsg
;
union
{
struct
cmsghdr
hdr
;
unsigned
char
buf
[
CMSG_SPACE
(
sizeof
(
int
))];
}
cmsgbuf
;
if
(
!
PyArg_ParseTuple
(
args
,
"ii"
,
&
conn
,
&
fd
))
return
NULL
;
dummy_iov
.
iov_base
=
&
dummy_char
;
dummy_iov
.
iov_len
=
1
;
msg
.
msg_control
=
buf
;
msg
.
msg_controllen
=
sizeof
(
buf
);
memset
(
&
msg
,
0
,
sizeof
(
msg
));
msg
.
msg_control
=
&
cmsgbuf
.
buf
;
msg
.
msg_controllen
=
sizeof
(
cmsgbuf
.
buf
);
msg
.
msg_iov
=
&
dummy_iov
;
msg
.
msg_iovlen
=
1
;
cmsg
=
CMSG_FIRSTHDR
(
&
msg
);
cmsg
->
cmsg_len
=
CMSG_LEN
(
sizeof
(
int
));
cmsg
->
cmsg_level
=
SOL_SOCKET
;
cmsg
->
cmsg_type
=
SCM_RIGHTS
;
cmsg
->
cmsg_len
=
CMSG_LEN
(
sizeof
(
int
));
msg
.
msg_controllen
=
cmsg
->
cmsg_len
;
*
(
int
*
)
CMSG_DATA
(
cmsg
)
=
fd
;
Py_BEGIN_ALLOW_THREADS
...
...
@@ -127,20 +133,26 @@ multiprocessing_recvfd(PyObject *self, PyObject *args)
{
int
conn
,
fd
,
res
;
char
dummy_char
;
char
buf
[
CMSG_SPACE
(
sizeof
(
int
))];
struct
msghdr
msg
=
{
0
};
struct
iovec
dummy_iov
;
struct
msghdr
msg
=
{
0
};
struct
cmsghdr
*
cmsg
;
union
{
struct
cmsghdr
hdr
;
unsigned
char
buf
[
CMSG_SPACE
(
sizeof
(
int
))];
}
cmsgbuf
;
if
(
!
PyArg_ParseTuple
(
args
,
"i"
,
&
conn
))
return
NULL
;
dummy_iov
.
iov_base
=
&
dummy_char
;
dummy_iov
.
iov_len
=
1
;
msg
.
msg_control
=
buf
;
msg
.
msg_controllen
=
sizeof
(
buf
);
memset
(
&
msg
,
0
,
sizeof
(
msg
));
msg
.
msg_control
=
&
cmsgbuf
.
buf
;
msg
.
msg_controllen
=
sizeof
(
cmsgbuf
.
buf
);
msg
.
msg_iov
=
&
dummy_iov
;
msg
.
msg_iovlen
=
1
;
cmsg
=
CMSG_FIRSTHDR
(
&
msg
);
cmsg
->
cmsg_level
=
SOL_SOCKET
;
cmsg
->
cmsg_type
=
SCM_RIGHTS
;
...
...
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