1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-15 16:20:17 +02:00
guile/libguile
Neil Jerram 78aa4a8850 Fix continuation problems on IA64.
* Specific problems in IA64 make check

** test-unwind

Representation of the relevant dynamic context:

                  non-rewindable
           catch      frame       make cont.
  o----o-----a----------b-------------c
        \
         \             call cont.
          o-----o-----------d

A continuation is captured at (c), with a non-rewindable frame in the
dynamic context at (b).  If a rewind through that frame was attempted,
Guile would throw to the catch at (a).  Then the context unwinds back
past (a), then winds forwards again, and the captured continuation is
called at (d).

We should end up at the catch at (a).  On ia64, we get an "illegal
instruction".

The problem is that Guile does not restore the ia64 register backing
store (RBS) stack (which is saved off when the continuation is
captured) until all the unwinding and rewinding is done.  Therefore,
when the rewind code (scm_i_dowinds) hits the non-rewindable frame at
(b), the RBS stack hasn't yet been restored.  The throw finds the
jmp_buf (for the catch at (a)) correctly from the dynamic context, and
jumps back to (a), but the RBS stack is invalid, hence the illegal
instruction.

This could be fixed by restoring the RBS stack earlier, at the same
point (copy_stack) where the normal stack is restored.  But that
causes a problem in the next test...

** continuations.test

The dynamic context diagram for this case is similar:

                   non-rewindable
  catch                 frame       make cont.
    a----x-----o----------b-------------c
          \
           \    call cont.
            o-------d

The only significant difference is that the catch point (a) is
upstream of where the dynamic context forks.  This means that the RBS
stack at (d) already contains the correct RBS contents for throwing
back to (a), so it doesn't matter whether the RBS stack that was saved
off with the continuation gets restored.

This test passes with the Guile 1.8.4 code, but fails (with an
"illegal instruction") when the code is changed to restore the RBS
stack earlier as described above.

The problem now is that the RBS stack is being restored _too_ early;
specifically when there is still stuff to do that relies on the old
RBS contents.  When a continuation is called, the sequence of relevant
events is:

  (1) Grow the (normal) stack until it is bigger than the (normal)
      stack saved off in the continuation.  (scm_dynthrow, grow_stack)

  (2) scm_i_dowinds calls itself recursively, such that

      (2.1) for each rewind (from (x) to (c)) that will be needed,
            another frame is added to the stack (both normal and RBS),
            with local variables specifying the required rewind; the
            rewinds don't actually happen yet, they will happen when
            the stack unwinds again through these frames

      (2.2) required unwinds - back from where the continuation was
            called (d) to the fork point (x) - are done immediately.

  (3) The normal (i.e. non-RBS) stack that was stored in the
      continuation is restored (i.e. copied on top of the actual
      stack).

      Note that this doesn't overwrite the frames that were added in
      (2.1), because the growth in (1) ensures that the added frames
      are beyond the end of the restored stack.

  (4) ? Restore the RBS stack here too ?

  (5) Return (from copy_stack) through the (2.1) frames, which means
      that the rewinds now happen.

  (6) setcontext (or longjmp) to the context (c) where the
      continuation was captured.

The trouble is that step (1) does not create space in the RBS stack in
the same kind of way that it does for the normal stack.  Therefore, if
the saved (in the continuation) RBS stack is big enough, it can
overwrite the RBS of the (2.1) frames that still need to complete.
This causes an illegal instruction when we return through those frames
and try to perform the rewinds.

* Fix

The key to the fix is that the saved RBS stack only needs to be
restored at some point before the next setcontext call, and that doing
it as close to the setcontext call as possible will avoid bad
interactions with the pre-setcontext stack.  Therefore we do the
restoration at the last possible point, immediately before the next
setcontext call.

The situation is complicated by there being two ways that the next
setcontext call can happen.

  - If the unwinding and rewinding is all successful, the next
    setcontext will be the one from step (6) above.  This is the
    "normal" continuation invocation case.

  - If one of the rewinds throws an error, the next setcontext will
    come from the throw implementation code.  (And the one in step (6)
    will never happen.)  This is the rewind error case.

In the rewind error case, the code calling setcontext knows nothing
about the continuation.  So to cover both cases, we:

  - copy (in step (4) above) the address and length of the
    continuation's saved RBS stack to the current thread state
    (SCM_I_CURRENT_THREAD)

  - modify all setcontext callers so that they check the current
    thread state for a saved RBS stack, and restore it if so before
    calling setcontext.

* Notes

** I think rewinders cannot rely on using any stack data

Unless it can be guaranteed that the data won't go into a register.
I'm not 100% sure about this, but I think it follows from the fact
that the RBS stack is not restored until after the rewinds have
happened.

Note that this isn't a regression caused by the current fix.  In Guile
1.8.4, the RBS stack was restored _after_ the rewinds, and this is
still the case now.

** Most setcontext calls for `throw' don't need to change the RBS stack

In the absence of continuation invocation, the setcontext call in the
throw implementation code always sets context to a place higher up the
same stack (both normal and RBS), hence no stack restoration is
needed.

* Other changes

** Using setcontext for all non-local jumps (for __ia64__)

Along the way, I read a claim somewhere that setcontext was more
reliable than longjmp, in cases where the stack has been manipulated.

I don't now have any reason to believe this, but it seems reasonable
anyway to leave the __ia64__ code using getcontext/setcontext, instead
of setjmp/longjmp.

(I think the only possible argument against this would be performance -
if getcontext was significantly slower than setjmp.  It that proves to
be the case, we should revisit this.)

** Capping RBS base for non-main threads

Somewhere else along the way, I hit a problem in GC, involving the RBS
stack of a non-main thread.  The problem was, in
SCM_MARK_BACKING_STORE, that scm_ia64_register_backing_store_base was
returning a value that was massively greater than the value of
scm_ia64_ar_bsp, leading to a seg fault.  This is because the
implementation of scm_ia64_register_backing_store_base is only valid
for the main thread.  I couldn't find a neat way of getting the true
RBS base of a non-main thread, but one idea is simply to call
scm_ia64_ar_bsp when guilifying a thread, and use the value returned
as an upper bound for that thread's RBS base.  (Note that the RBS
stack grows upwards.)

(Were it not for scm_init_guile, we could be much more definitive
about this.  We could take the value of scm_ia64_ar_bsp as a
definitive base address for the part of the RBS stack that Guile cares
about.  We could also then discard
scm_ia64_register_backing_store_base.)
2008-05-12 23:06:04 +01:00
..
.cvsignore Don't ignore .cvsigore 2004-03-21 02:12:49 +00:00
.gitignore More `.gitignore'. 2008-04-07 23:48:08 +02:00
__scm.h Fix continuation problems on IA64. 2008-05-12 23:06:04 +01:00
_scm.h (errno): Remove declarations that have been there 2008-02-27 21:24:44 +00:00
alist.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
alist.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
alloca.c
arbiters.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
arbiters.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
async.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
async.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
backtrace.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
backtrace.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
boolean.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
boolean.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
c-tokenize.lex Fix c-tokenize.c error: 'input' defined but not used, when compiling with GCC 4.3.0 2008-05-05 23:49:02 +01:00
ChangeLog Fix continuation problems on IA64. 2008-05-12 23:06:04 +01:00
ChangeLog-1996-1999
ChangeLog-2000
ChangeLog-gh
ChangeLog-scm
ChangeLog-threads
chars.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
chars.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
continuations.c Fix continuation problems on IA64. 2008-05-12 23:06:04 +01:00
continuations.h Fix continuation problems on IA64. 2008-05-12 23:06:04 +01:00
conv-integer.i.c * numbers.c (scm_i_range_error): New. 2004-10-19 15:59:56 +00:00
conv-uinteger.i.c * numbers.c (scm_i_range_error): New. 2004-10-19 15:59:56 +00:00
convert.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
convert.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
convert.i.c (scm_array_handle_release): New, changed all uses of 2005-01-06 18:56:34 +00:00
coop-defs.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
coop-pthreads.c Merge of IA64 fix from CVS HEAD. 2007-01-28 16:36:38 +00:00
coop-pthreads.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
coop-threads.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
coop.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
cpp_cnvt.awk Use scm_from_int instead of SCM_MAKINUM. 2004-07-10 13:42:18 +00:00
cpp_err_symbols.in
cpp_errno.c
cpp_sig_symbols.in Add SIGSYS. 2004-04-15 00:47:02 +00:00
cpp_signal.c
debug-malloc.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
debug-malloc.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
debug.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
debug.h * eval.c (sym_instead): New symbol. 2005-11-04 21:20:24 +00:00
deprecated.c (scm_i_defer_ints_etc): Show SCM_DEFER_INTS in message, 2006-03-03 23:35:57 +00:00
deprecated.h * deprecated.h (scm_create_hook), version.h.in (scm_major_version, 2007-01-03 21:13:22 +00:00
deprecation.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
deprecation.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
discouraged.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
discouraged.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
dynl.c Renamed the "frames" that are related to dynamic-wind to "dynamic 2006-01-29 00:23:28 +00:00
dynl.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
dynwind.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
dynwind.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
environments.c (core_environments_unobserve): Use if/else rather 2006-07-07 22:21:08 +00:00
environments.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
eq.c Changes from arch/CVS synchronization 2006-06-20 16:44:50 +00:00
eq.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
error.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
error.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
eval.c Copy srcprop implementation from the 1.9 branch, fixes a deadlock. 2008-04-16 11:58:42 +02:00
eval.h The FSF has a new address. 2005-05-23 19:57:22 +00:00
evalext.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
evalext.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
extensions.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
extensions.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
feature.c (scm_set_program_arguments_scm): New function, 2007-01-15 21:28:52 +00:00
feature.h copyright year 2007-01-15 23:30:28 +00:00
filesys.c Fix `alloca' on FreeBSD 6. 2008-03-10 22:13:33 +00:00
filesys.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
fluids.c Changes from arch/CVS synchronization 2007-06-25 22:36:43 +00:00
fluids.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
fports.c Release stuff: missing NEWS and 2007/2008 copyrights. 2008-02-15 22:37:52 +00:00
fports.h (scm_i_fport_seek, scm_i_fport_truncate): New functions. 2006-09-26 01:13:44 +00:00
futures.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
futures.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
gc-card.c (scm_i_card_statistics): Record scm_tc7_number types as 2007-08-21 00:58:15 +00:00
gc-freelist.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
gc-malloc.c Release stuff: missing NEWS and 2007/2008 copyrights. 2008-02-15 22:37:52 +00:00
gc-mark.c (scm_mark_all): Fix c99-isms "loops" and "again" variables. 2006-02-03 23:49:37 +00:00
gc-segment.c * gc.c (s_scm_gc_stats): return total cells allocated in a run as 2007-01-23 03:00:18 +00:00
gc.c Fix build issue in `gc.c' on GNU/Linux IA64. 2008-02-22 08:57:45 +00:00
gc.h Merge of IA64 fix from CVS HEAD. 2007-01-28 16:36:38 +00:00
gc_os_dep.c Fix NetBSD/alpha support. 2008-02-16 19:38:25 +00:00
gdb_interface.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
gdbint.c Changes from arch/CVS synchronization 2007-08-11 10:48:28 +00:00
gdbint.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
gen-scmconfig.c Don't use "-I$(srcdir)", so that our "random.h" doesn't shadow libc's on Tru64. 2008-04-24 19:25:30 +02:00
gen-scmconfig.h.in Changes from arch/CVS synchronization 2007-10-10 16:58:57 +00:00
gettext.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
gh.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
gh_data.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
gh_eval.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
gh_funcs.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
gh_init.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
gh_io.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
gh_list.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
gh_predicates.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
goops.c initialize 'u' slots to 0, not SCM_UNPACK(SCM_GOOPS_UNBOUND) 2008-04-10 23:11:20 +02:00
goops.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
gsubr.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
gsubr.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
guardians.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
guardians.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
guile-doc-snarf.in Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
guile-func-name-check.in Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
guile-snarf-docs.in Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
guile-snarf.awk.in Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
guile-snarf.in guile-snarf: Honor $TMPDIR. 2008-02-12 14:10:16 +00:00
guile.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
hash.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
hash.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
hashtab.c Release stuff: missing NEWS and 2007/2008 copyrights. 2008-02-15 22:37:52 +00:00
hashtab.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
hooks.c * gc.c (mark_gc_async): Change "func_data" to "fn_data", to avoid 2007-12-29 01:33:54 +00:00
hooks.h * gc.c (mark_gc_async): Change "func_data" to "fn_data", to avoid 2007-12-29 01:33:54 +00:00
i18n.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
i18n.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
inet_aton.c
init.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
init.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
inline.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
inline.h Inline scm_getc', scm_putc' and `scm_puts'. 2008-04-16 09:47:21 +02:00
ioext.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
ioext.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
iselect.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
keywords.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
keywords.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
lang.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
lang.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
list.c (scm_list): Restore this function for use from C. 2006-02-02 21:15:48 +00:00
list.h add a copyright year for 2005 changes 2006-02-02 21:27:44 +00:00
load.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
load.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
macros.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
macros.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
Makefile.am Don't use "-I$(srcdir)", so that our "random.h" doesn't shadow libc's on Tru64. 2008-04-24 19:25:30 +02:00
mallocs.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
mallocs.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
memmove.c
mkstemp.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
modules.c Release stuff: missing NEWS and 2007/2008 copyrights. 2008-02-15 22:37:52 +00:00
modules.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
net_db.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
net_db.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
null-threads.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
null-threads.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
numbers.c Avoid warning with GCC on FreeBSD 6.2 in `numbers.c'. 2008-05-07 17:43:17 +02:00
numbers.h * numbers.c (scm_i_fraction_reduce): move logic into 2006-12-23 20:55:47 +00:00
objects.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
objects.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
objprop.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
objprop.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
options.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
options.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
pairs.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
pairs.h Fix "mixed linkage" errors in `inline.h'. 2008-03-02 16:28:04 +00:00
ports.c Inline scm_getc', scm_putc' and `scm_puts'. 2008-04-16 09:47:21 +02:00
ports.h Inline scm_getc', scm_putc' and `scm_puts'. 2008-04-16 09:47:21 +02:00
posix.c copyright year 2007-09-11 00:44:54 +00:00
posix.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
print.c (scm_write, scm_display, scm_write_char): Disable port close 2006-12-24 09:43:02 +00:00
print.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
private-gc.h (CELL_P): Also check that the potential pointer is 2006-05-07 22:53:58 +00:00
procprop.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
procprop.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
procs.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
procs.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
properties.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
properties.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
pthread-threads.h Changes from arch/CVS synchronization 2007-10-10 16:58:57 +00:00
putenv.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
quicksort.i.c * Makefile.am (libguile_la_SOURCES, DOT_X_FILES, DOT_DOC_FILES, 2005-01-02 19:16:39 +00:00
ramap.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
ramap.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
random.c scm_t_uint64 cast in scm_i_uniform32, which was apparently Mikael's 2006-04-17 00:25:52 +00:00
random.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
rdelim.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
rdelim.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
read.c Remove extraneous semi-colon in `read.c'. 2008-04-26 21:39:27 +02:00
read.h Changes from arch/CVS synchronization 2007-08-11 10:48:28 +00:00
regex-posix.c (scm_init_regex_posix): Use scm_from_int for 2007-01-15 21:45:32 +00:00
regex-posix.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
remaining-docs-needed
root.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
root.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
run-test
rw.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
rw.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
scmconfig.h.top Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
scmsigs.c (scm_sleep): In docstring, cross refence usleep. 2007-02-21 22:59:49 +00:00
scmsigs.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
script.c Release Guile 1.8.4. 2008-02-17 00:13:16 +00:00
script.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
simpos.c (scm_primitive__exit): New function. 2006-05-19 23:16:05 +00:00
simpos.h (scm_primitive__exit): New function. 2006-05-19 23:16:05 +00:00
smob.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
smob.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
snarf.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
socket.c Changes from arch/CVS synchronization 2007-12-04 17:38:59 +00:00
socket.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
sort.c copyright year 2007-03-07 23:13:28 +00:00
sort.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
srcprop.c Copy srcprop implementation from the 1.9 branch, fixes a deadlock. 2008-04-16 11:58:42 +02:00
srcprop.h Copy srcprop implementation from the 1.9 branch, fixes a deadlock. 2008-04-16 11:58:42 +02:00
srfi-4.c Correct embarrasing typo. "Always be sure to test the right branch." 2006-05-27 21:26:03 +00:00
srfi-4.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
srfi-4.i.c (take_uvec): Make BASE pointer non-const. 2005-12-06 21:42:19 +00:00
srfi-13.c (MY_VALIDATE_SUBSTRING_SPEC_UCOPY): New macro. 2006-02-25 20:50:02 +00:00
srfi-13.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
srfi-14.c Changes from arch/CVS synchronization 2006-09-25 08:23:24 +00:00
srfi-14.h Changes from arch/CVS synchronization 2006-09-25 08:23:24 +00:00
stackchk.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
stackchk.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
stacks.c * struct.c, struct.h (scm_make_vtable): New function, providing 2007-03-07 21:39:34 +00:00
stacks.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
stime.c Changes from arch/CVS synchronization 2007-08-23 21:30:54 +00:00
stime.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
strerror.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
strings.c More compilation fixes with Sun CC (bug #21378). 2008-02-07 09:31:06 +00:00
strings.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
strorder.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
strorder.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
strports.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
strports.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
struct.c fix struct-ref and struct-set! on "light" structs 2008-04-10 23:11:29 +02:00
struct.h (scm_make_vtable): New function, providing `make-vtable'. 2007-03-07 21:38:40 +00:00
symbols.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
symbols.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
tags.h The FSF has a new address. 2005-05-23 19:57:22 +00:00
threads.c Fix continuation problems on IA64. 2008-05-12 23:06:04 +01:00
threads.h Fix continuation problems on IA64. 2008-05-12 23:06:04 +01:00
throw.c Fix continuation problems on IA64. 2008-05-12 23:06:04 +01:00
throw.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
unif.c Changes from arch/CVS synchronization 2006-12-12 14:09:08 +00:00
unif.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
validate.h Changes from arch/CVS synchronization 2007-12-08 16:33:26 +00:00
values.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
values.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
variable.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
variable.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
vectors.c Changes from arch/CVS synchronization 2006-11-29 09:25:32 +00:00
vectors.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
version.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
version.h.in * deprecated.h (scm_create_hook), version.h.in (scm_major_version, 2007-01-03 21:13:22 +00:00
vports.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
vports.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
weaks.c * libguile.h: Update copyright statement to LGPL. 2008-01-22 21:12:07 +00:00
weaks.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
win32-dirent.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
win32-dirent.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
win32-socket.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
win32-socket.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
win32-uname.c Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00
win32-uname.h Added 2006 to copyright years in every file, as per the new rules. 2006-02-12 13:42:52 +00:00