diff options
author | Andy Wingo <wingo@pobox.com> | 2009-09-27 20:25:39 -0400 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2009-10-23 14:51:18 +0200 |
commit | a6f15a1eba208c92df5640001390277d641909b8 (patch) | |
tree | 6f1998073059645278bc01c60b95c72211d68755 /gdbinit | |
parent | 55d9bc947ef529157c5598e097eba23179b94987 (diff) |
callees now check their args, cons rest list, reserve locals
* gdbinit: Ignore SIGPWR and SIGXCPU, which the BDW GC seems to use.
* libguile/vm-engine.h (FETCH_WIDTH): Remove unused macro.
(INIT_ARGS, INIT_FRAME): Remove; callees now check their args and
reserve space for their locals.
* libguile/vm-engine.c:
* libguile/vm-i-system.c: Turn on callee arg checking and local
reservation. Seems to work!
Diffstat (limited to 'gdbinit')
-rw-r--r-- | gdbinit | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,5 +1,8 @@ # -*- GDB-Script -*- +handle SIGPWR noprint nostop +handle SIGXCPU noprint nostop + define newline call (void)scm_newline (scm_current_error_port ()) end |