1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-07-02 23:50:47 +02:00

Remove last vestiges of ia64 support

* configure.ac:
* libguile/continuations-internal.h (struct scm_continuation):
* libguile/continuations.c (capture_auxiliary_stack)
(restore_auxiliary_stack, scm_i_make_continuation, copy_stack_and_call):
* libguile/gen-scmconfig.c (main):
* libguile/threads.h (struct scm_thread): Remove support for aux stacks.
This commit is contained in:
Andy Wingo 2025-06-25 09:15:00 +02:00
parent 4b2924730e
commit 08296e6022
6 changed files with 1 additions and 72 deletions

View file

@ -100,11 +100,6 @@ struct scm_thread {
/* Stack base. Used when checking for C stack overflow. */
SCM_STACKITEM *base;
#if SCM_HAVE_AUXILIARY_STACK
/* Auxiliary stack base. */
SCM_STACKITEM *auxiliary_stack_base;
#endif
/* For joinable threads, a cond to wait on joining, and a lock to
protect the results. #f if not joinable. */
SCM join_cond;