unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* freeze/exploson of Emacs 22.0.50.1
@ 2006-03-10 16:26 Masaru Nomiya
  0 siblings, 0 replies; only message in thread
From: Masaru Nomiya @ 2006-03-10 16:26 UTC (permalink / raw)


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: nomiyac360@mg.point.ne.jp

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2006-03-10 16:26 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-03-10 16:26 freeze/exploson of Emacs 22.0.50.1 Masaru Nomiya

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).