1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-02 04:40:29 +02:00

* continuations.h, unif.h: in the descriptions of the bit patterns

of the heap cells, make bit 0 the least significant.
This commit is contained in:
Gary Houston 2001-10-03 20:49:45 +00:00
parent 7fb78f5adb
commit b856b51a4c
3 changed files with 12 additions and 7 deletions

View file

@ -48,8 +48,8 @@
/* a continuation SCM is a non-immediate pointing to a heap cell with:
word 0: bits 0-15: unused.
bits 16-31: smob type tag: scm_tc16_continuation.
word 0: bits 0-15: smob type tag: scm_tc16_continuation.
bits 16-31: unused.
word 1: malloc block containing an scm_t_contregs structure with a
tail array of SCM_STACKITEM. the size of the array is stored
in the num_stack_items field of the structure.