mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
See ChangeLog from 2005-03-02.
This commit is contained in:
parent
cb1cfc42a4
commit
9de87eea47
67 changed files with 3044 additions and 2606 deletions
|
@ -37,11 +37,11 @@
|
|||
# if SCM_STACK_GROWS_UP
|
||||
# define SCM_STACK_OVERFLOW_P(s)\
|
||||
(SCM_STACK_PTR (s) \
|
||||
> ((SCM_STACKITEM *) SCM_BASE (scm_rootcont) + SCM_STACK_LIMIT))
|
||||
> (SCM_I_CURRENT_THREAD->base + SCM_STACK_LIMIT))
|
||||
# else
|
||||
# define SCM_STACK_OVERFLOW_P(s)\
|
||||
(SCM_STACK_PTR (s) \
|
||||
< ((SCM_STACKITEM *) SCM_BASE (scm_rootcont) - SCM_STACK_LIMIT))
|
||||
< (SCM_I_CURRENT_THREAD->base - SCM_STACK_LIMIT))
|
||||
# endif
|
||||
# define SCM_CHECK_STACK\
|
||||
{\
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue