[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Aligned blocks management: obsolete?
From: |
Wolfgang Jenkner |
Subject: |
Re: Aligned blocks management: obsolete? |
Date: |
Wed, 20 Jun 2012 19:59:04 +0200 |
User-agent: |
Gnus/5.130006 (Ma Gnus v0.6) Emacs/24.1.50 (berkeley-unix) |
On Wed, Jun 20 2012, Dmitry Antipov wrote:
> This code tries to utilize system malloc features and falls back to legacy
> aligned blocks management code if system malloc implementation is unknown,
> broken, or lacks aligned allocation routines.
I think the following trivial fix is needed (relative to your patch):
Wolfgang
diff --git a/src/alloc.c b/src/alloc.c
index 15cefb5..4cd3a32 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -894,7 +894,7 @@ void *lisp_malloc_loser EXTERNALLY_VISIBLE;
/* Nonzero if the memory at ADDR can be
addressed thru a Lisp object's pointer. */
-static inline void
+static inline int
verify_address (char *addr)
{
Lisp_Object obj;
- Re: Aligned blocks management: obsolete?, (continued)
- Re: Aligned blocks management: obsolete?, Stefan Monnier, 2012/06/20
- Re: Aligned blocks management: obsolete?, Dmitry Antipov, 2012/06/20
- Re: Aligned blocks management: obsolete?, Stefan Monnier, 2012/06/20
- Re: Aligned blocks management: obsolete?, Eli Zaretskii, 2012/06/20
- Re: Aligned blocks management: obsolete?, Dmitry Antipov, 2012/06/21
- Re: Aligned blocks management: obsolete?, Eli Zaretskii, 2012/06/21
- Re: Aligned blocks management: obsolete?, Richard Stallman, 2012/06/21
- Re: Aligned blocks management: obsolete?, Eli Zaretskii, 2012/06/20
- Re: Aligned blocks management: obsolete?, Dmitry Antipov, 2012/06/20
- Re: Aligned blocks management: obsolete?, Eli Zaretskii, 2012/06/21
- Re: Aligned blocks management: obsolete?,
Wolfgang Jenkner <=
- Re: Aligned blocks management: obsolete?, Dmitry Antipov, 2012/06/20
Re: Aligned blocks management: obsolete?, Paul Eggert, 2012/06/20