Change 20118 by [EMAIL PROTECTED] on 2003/07/10 17:35:32
malloc alignment patch from Spider, needed for Tru64 + longdouble.
Affected files ...
... //depot/perl/malloc.c#103 edit
Differences ...
==== //depot/perl/malloc.c#103 (text) ====
Index: perl/malloc.c
--- perl/malloc.c#102~20069~ Tue Jul 8 01:41:01 2003
+++ perl/malloc.c Thu Jul 10 10:35:32 2003
@@ -566,6 +566,9 @@
union overhead *ov_next; /* when free */
#if MEM_ALIGNBYTES > 4
double strut; /* alignment problems */
+# if MEM_ALIGNBYTES > 8
+ char sstrut[MEM_ALIGNBYTES]; /* for the sizing */
+# endif
#endif
struct {
/*
End of Patch.