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
b84cb708
Unverified
Kaydet (Commit)
b84cb708
authored
Nis 30, 2019
tarafından
Victor Stinner
Kaydeden (comit)
GitHub
Nis 30, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-36734: Fix compilation of faulthandler.c on HP-UX (GH-12970)
Initialize "stack_t current_stack" to zero using memset().
üst
3bbcc925
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
2019-04-26-17-14-20.bpo-36734.p2MaiN.rst
...S.d/next/Library/2019-04-26-17-14-20.bpo-36734.p2MaiN.rst
+2
-0
faulthandler.c
Modules/faulthandler.c
+2
-1
No files found.
Misc/NEWS.d/next/Library/2019-04-26-17-14-20.bpo-36734.p2MaiN.rst
0 → 100644
Dosyayı görüntüle @
b84cb708
Fix compilation of ``faulthandler.c`` on HP-UX. Initialize ``stack_t
current_stack`` to zero using ``memset()``.
Modules/faulthandler.c
Dosyayı görüntüle @
b84cb708
...
...
@@ -1370,7 +1370,8 @@ void _PyFaulthandler_Fini(void)
#ifdef HAVE_SIGALTSTACK
if
(
stack
.
ss_sp
!=
NULL
)
{
/* Fetch the current alt stack */
stack_t
current_stack
=
{};
stack_t
current_stack
;
memset
(
&
current_stack
,
0
,
sizeof
(
current_stack
));
if
(
sigaltstack
(
NULL
,
&
current_stack
)
==
0
)
{
if
(
current_stack
.
ss_sp
==
stack
.
ss_sp
)
{
/* The current alt stack is the one that we installed.
...
...
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