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
222c8924
Kaydet (Commit)
222c8924
authored
Agu 08, 1995
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
add xstat (extended stat, returns resource fork size and creator/type)
üst
08d2071a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
1 deletion
+32
-1
macmodule.c
Mac/Modules/macmodule.c
+32
-1
No files found.
Mac/Modules/macmodule.c
Dosyayı görüntüle @
222c8924
...
...
@@ -410,6 +410,37 @@ mac_stat(self, args)
(
long
)
st
.
st_ctime
);
}
static
object
*
mac_xstat
(
self
,
args
)
object
*
self
;
object
*
args
;
{
struct
macstat
st
;
char
*
path
;
int
res
;
if
(
!
getargs
(
args
,
"s"
,
&
path
))
return
NULL
;
BGN_SAVE
res
=
macstat
(
path
,
&
st
);
END_SAVE
if
(
res
!=
0
)
return
mac_error
();
return
mkvalue
(
"(llllllllllls#s#)"
,
(
long
)
st
.
st_mode
,
(
long
)
st
.
st_ino
,
(
long
)
st
.
st_dev
,
(
long
)
st
.
st_nlink
,
(
long
)
st
.
st_uid
,
(
long
)
st
.
st_gid
,
(
long
)
st
.
st_size
,
(
long
)
st
.
st_atime
,
(
long
)
st
.
st_mtime
,
(
long
)
st
.
st_ctime
,
(
long
)
st
.
st_rsize
,
st
.
st_creator
,
4
,
st
.
st_type
,
4
);
}
static
object
*
mac_sync
(
self
,
args
)
object
*
self
;
...
...
@@ -454,7 +485,6 @@ mac_write(self, args)
}
#endif
/* !__MWERKS__ */
#undef MALLOC_DEBUG
#ifdef MALLOC_DEBUG
static
object
*
mac_mstats
(
self
,
args
)
...
...
@@ -492,6 +522,7 @@ static struct methodlist mac_methods[] = {
{
"rename"
,
mac_rename
},
{
"rmdir"
,
mac_rmdir
},
{
"stat"
,
mac_stat
},
{
"xstat"
,
mac_xstat
},
{
"sync"
,
mac_sync
},
{
"unlink"
,
mac_unlink
},
#ifndef CW4
...
...
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