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
d65778a9
Kaydet (Commit)
d65778a9
authored
Ara 31, 2002
tarafından
Andrew MacIntyre
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
whitespace cleanup
üst
7c90a895
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
16 deletions
+21
-16
dllentry.c
PC/os2emx/dllentry.c
+21
-16
No files found.
PC/os2emx/dllentry.c
Dosyayı görüntüle @
d65778a9
...
@@ -19,20 +19,25 @@ extern void __ctordtorTerm (void);
...
@@ -19,20 +19,25 @@ extern void __ctordtorTerm (void);
unsigned
long
_DLL_InitTerm
(
unsigned
long
mod_handle
,
unsigned
long
flag
)
unsigned
long
_DLL_InitTerm
(
unsigned
long
mod_handle
,
unsigned
long
flag
)
{
{
switch
(
flag
)
switch
(
flag
)
{
{
case
0
:
case
0
:
if
(
_CRT_init
())
return
0
;
if
(
_CRT_init
())
__ctordtorInit
();
return
0
;
/* Ignore fatal signals */
__ctordtorInit
();
signal
(
SIGSEGV
,
SIG_IGN
);
signal
(
SIGFPE
,
SIG_IGN
);
/* Ignore fatal signals */
return
1
;
signal
(
SIGSEGV
,
SIG_IGN
);
case
1
:
signal
(
SIGFPE
,
SIG_IGN
);
__ctordtorTerm
();
_CRT_term
();
return
1
;
return
1
;
default:
case
1
:
return
0
;
__ctordtorTerm
();
}
_CRT_term
();
return
1
;
default:
return
0
;
}
}
}
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