emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

freeze/exploson of Emacs 22.0.50.1


From: Masaru Nomiya
Subject: freeze/exploson of Emacs 22.0.50.1
Date: Sat, 11 Mar 2006 01:26:35 +0900
User-agent: Wanderlust/2.15.3 (Almost Unreal) EMIKO/1.14.1 (Choanoflagellata) LIMIT/1.14.10 (Furuichi) APEL/10.6 Emacs/22.0.50 (i686-pc-linux-gnu) MULE/5.0 (SAKAKI)

Hello,

I had got frequent freeze/explosion of Emacs 22.0.50.1 for several days.
The gdb gave me an message;

(no debugging symbols found)
*** glibc detected *** corrupted double-linked list: 0x08a90828 ***

Program received signal SIGABRT, Aborted.
0xffffe410 in ?? ()
(gdb) 

But, this morning (in Japan), alooc.c has been changed. and this solved my
problem completely.

Now, alloc.c has been changed as follows;

--- alloc.c.orig        2006-03-10 12:20:10.000000000 +0900
+++ alloc.c     2006-03-11 00:07:44.000000000 +0900
@@ -886,7 +886,9 @@
 /* Use posix_memalloc if the system has it and we're using the system's
    malloc (because our gmalloc.c routines don't have posix_memalign although
    its memalloc could be used).  */
-#define USE_POSIX_MEMALIGN (HAVE_POSIX_MEMALIGN && SYSTEM_MALLOC)
+#if defined (HAVE_POSIX_MEMALIGN) && defined (SYSTEM_MALLOC)
+#define USE_POSIX_MEMALIGN 1
+#endif
 
 /* BLOCK_ALIGN has to be a power of 2.  */
 #define BLOCK_ALIGN (1 << 10)
 
I' sorry, but this revusion reproduces Emacs;s freeze.

(Environment)

# uname -r
2.6.11.4-21.11-default

# rpm -qa | grep glibc
glibc-devel-2.3.4-23.4
glibc-2.3.4-23.4
glibc-locale-2.3.4-23.4
glibc-i18ndata-2.3.4-23.4
glibc-info-2.3.4-23.4

Thanks,

---
  Masaru Nomiya        mail-to: address@hidden




reply via email to

[Prev in Thread] Current Thread [Next in Thread]