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
4622e146
Kaydet (Commit)
4622e146
authored
Eyl 19, 2000
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Randall Hopper: Add fpectl functionality patch for FreeBSD.
üst
6df27f8d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
fpectlmodule.c
Modules/fpectlmodule.c
+15
-0
No files found.
Modules/fpectlmodule.c
Dosyayı görüntüle @
4622e146
...
...
@@ -68,6 +68,10 @@ extern "C" {
#include "Python.h"
#include <signal.h>
#if defined(__FreeBSD__)
# include <ieeefp.h>
#endif
#ifndef WANT_SIGFPE_HANDLER
/* Define locally if they are not defined in Python. This gives only
* the limited control to induce a core dump in case of an exception.
...
...
@@ -178,6 +182,12 @@ static void fpe_reset(Sigfunc *handler)
#endif
signal
(
SIGFPE
,
handler
);
/*-- FreeBSD ----------------------------------------------------------------*/
#elif defined(__FreeBSD__)
fpresetsticky
(
fpgetsticky
()
);
fpsetmask
(
FP_X_INV
|
FP_X_DZ
|
FP_X_OFL
);
signal
(
SIGFPE
,
handler
);
/*-- Linux ----------------------------------------------------------------*/
#elif defined(linux)
#ifdef __GLIBC__
...
...
@@ -212,7 +222,12 @@ static void fpe_reset(Sigfunc *handler)
static
PyObject
*
turnoff_sigfpe
(
PyObject
*
self
,
PyObject
*
args
)
{
#ifdef __FreeBSD__
fpresetsticky
(
fpgetsticky
()
);
fpsetmask
(
0
);
#else
fputs
(
"Operation not implemented
\n
"
,
stderr
);
#endif
Py_INCREF
(
Py_None
);
return
Py_None
;
}
...
...
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