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
81c6df5c
Kaydet (Commit)
81c6df5c
authored
Mar 30, 2015
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
(Merge 3.4) Issue #22585: os.urandom() now releases the GIL when the
getentropy() is used (OpenBSD 5.6+).
üst
79b74aeb
9aa1331c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
6 deletions
+14
-6
random.c
Python/random.c
+14
-6
No files found.
Python/random.c
Dosyayı görüntüle @
81c6df5c
...
...
@@ -81,16 +81,24 @@ py_getentropy(unsigned char *buffer, Py_ssize_t size, int fatal)
{
while
(
size
>
0
)
{
Py_ssize_t
len
=
Py_MIN
(
size
,
256
);
int
res
=
getentropy
(
buffer
,
len
);
if
(
res
<
0
)
{
if
(
fatal
)
{
Py_FatalError
(
"getentropy() failed"
);
}
else
{
int
res
;
if
(
!
fatal
)
{
Py_BEGIN_ALLOW_THREADS
res
=
getentropy
(
buffer
,
len
);
Py_END_ALLOW_THREADS
if
(
res
<
0
)
{
PyErr_SetFromErrno
(
PyExc_OSError
);
return
-
1
;
}
}
else
{
res
=
getentropy
(
buffer
,
len
);
if
(
res
<
0
)
Py_FatalError
(
"getentropy() failed"
);
}
buffer
+=
len
;
size
-=
len
;
}
...
...
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