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
05cf7e04
Kaydet (Commit)
05cf7e04
authored
Eyl 30, 1996
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added VCHECK compile time option that fills allocated and freed blocks
with garbage.
üst
e86cbc43
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
malloc.c
Mac/mwerks/malloc/malloc.c
+7
-0
No files found.
Mac/mwerks/malloc/malloc.c
Dosyayı görüntüle @
05cf7e04
...
...
@@ -57,6 +57,7 @@ static char *rcsid = "$Id$";
#define DEBUG2
#define MSTATS
#define RCHECK
#define VCHECK
typedef
unsigned
char
u_char
;
typedef
unsigned
long
u_long
;
...
...
@@ -221,6 +222,9 @@ malloc(nbytes)
op
->
ov_size
=
(
nbytes
+
RSLOP
-
1
)
&
~
(
RSLOP
-
1
);
op
->
ov_rmagic
=
RMAGIC
;
*
(
u_short
*
)((
caddr_t
)(
op
+
1
)
+
op
->
ov_size
)
=
RMAGIC
;
#endif
#ifdef VCHECK
memset
((
char
*
)(
op
+
1
),
0x41
,
nbytes
);
#endif
return
((
char
*
)(
op
+
1
));
}
...
...
@@ -286,6 +290,9 @@ free(cp)
#ifdef RCHECK
ASSERT
(
op
->
ov_rmagic
==
RMAGIC
);
ASSERT
(
*
(
u_short
*
)((
caddr_t
)(
op
+
1
)
+
op
->
ov_size
)
==
RMAGIC
);
#endif
#ifdef VCHECK
memset
(
cp
,
43
,
op
->
ov_size
);
#endif
size
=
op
->
ov_index
;
if
(
size
==
0xff
)
{
...
...
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