guile-devel
[Top][All Lists]
Advanced

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

Re: abort () is scm_gc_sweep ()


From: Marius Vollmer
Subject: Re: abort () is scm_gc_sweep ()
Date: Thu, 13 Nov 2003 00:50:22 +0100
User-agent: Gnus/5.1002 (Gnus v5.10.2) Emacs/21.3 (gnu/linux)

Ludovic Courtès <address@hidden> writes:

> In function scm_gc_sweep () (gc.c:1922) appears the following condition:
>
>   if (scm_mallocated < m)
>     abort ();
>
> The comment above the abort () is very clear about why this happens.
> However, since the triggering of this abort () can only be due to the
> non respect of Guile's programming conventions by the programmer, I
> think it would be a good idea to rather use something like
>
>   assert (scm_mallocated < m);
>
> instead of just abort ().

Yes, that would be better.  There are a lot of places where we use
abort.  Maybe most of them could be changed to assertions.

So, if someone has a patch... ;-)

-- 
GPG: D5D4E405 - 2F9B BCCC 8527 692A 04E3  331E FAF8 226A D5D4 E405




reply via email to

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