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
d1f06313
Kaydet (Commit)
d1f06313
authored
Agu 01, 1996
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
- Minimum stacksize is now 8K for PPC, 4K for 68K
- Added PyMac_BuildNumVersion
üst
64d376a6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
7 deletions
+20
-7
macglue.c
Mac/Python/macglue.c
+20
-7
No files found.
Mac/Python/macglue.c
Dosyayı görüntüle @
d1f06313
...
...
@@ -64,6 +64,18 @@ typedef FileFilterYDProcPtr FileFilterYDUPP;
#include <signal.h>
#include <stdio.h>
/*
** When less than this amount of stackspace is left we
** raise a MemoryError.
*/
#ifndef MINIMUM_STACK_SIZE
#ifdef __powerc
#define MINIMUM_STACK_SIZE 8192
#else
#define MINIMUM_STACK_SIZE 4096
#endif
#endif
/*
** We have to be careful, since we can't handle
** things like updates (and they'll keep coming back if we don't
...
...
@@ -140,12 +152,6 @@ PyMac_FixGUSIcd()
pb
.
ioWDDirID
=
curdirfss
.
parID
;
if
(
PBHSetVol
(
&
pb
,
0
)
!=
noErr
)
return
;
#if 0
/* Set standard-file working directory */
LMSetSFSaveDisk(-curdirfss.vRefNum);
LMSetCurDirStore(curdirfss.parID);
#endif
}
#endif
...
...
@@ -233,7 +239,7 @@ PyOS_CheckStack()
long
left
;
left
=
StackSpace
();
if
(
left
<
4000
)
if
(
left
<
MINIMUM_STACK_SIZE
)
return
-
1
;
return
0
;
}
...
...
@@ -650,6 +656,13 @@ PyMac_BuildOSType(OSType t)
return
PyString_FromStringAndSize
((
char
*
)
&
t
,
4
);
}
/* Convert an NumVersion value to a 4-element tuple */
PyObject
*
PyMac_BuildNumVersion
(
NumVersion
t
)
{
return
Py_BuildValue
(
"(hhhh)"
,
t
.
majorRev
,
t
.
minorAndBugRev
,
t
.
stage
,
t
.
nonRelRev
);
}
/* Convert a Python string object to a Str255 */
int
...
...
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