summaryrefslogtreecommitdiff
path: root/libguile/simpos.c
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2006-01-29 00:23:28 +0000
committerMarius Vollmer <mvo@zagadka.de>2006-01-29 00:23:28 +0000
commit661ae7ab6be5aec4d6107902cff94dbb8952a24a (patch)
treed3e367c7f0dfd442645c5c2e1c87f4f4a7fc54c5 /libguile/simpos.c
parent15ccf10bf2d7cb15ec46f2eb62c6eb86827c9108 (diff)
Renamed the "frames" that are related to dynamic-wind to "dynamic
contexts. Renamed all functions from scm_frame_ to scm_dynwind_. Updated documentation.
Diffstat (limited to 'libguile/simpos.c')
-rw-r--r--libguile/simpos.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libguile/simpos.c b/libguile/simpos.c
index d1fcd81c8..3d5d0feb7 100644
--- a/libguile/simpos.c
+++ b/libguile/simpos.c
@@ -127,12 +127,12 @@ SCM_DEFINE (scm_system_star, "system*", 0, 0, 1,
int pid;
char **execargv;
- scm_frame_begin (0);
+ scm_dynwind_begin (0);
/* allocate before fork */
execargv = scm_i_allocate_string_pointers (args);
- scm_frame_unwind_handler (free_string_pointers, execargv,
- SCM_F_WIND_EXPLICITLY);
+ scm_dynwind_unwind_handler (free_string_pointers, execargv,
+ SCM_F_WIND_EXPLICITLY);
/* make sure the child can't kill us (as per normal system call) */
sig_ign = scm_from_long ((unsigned long) SIG_IGN);
@@ -148,7 +148,7 @@ SCM_DEFINE (scm_system_star, "system*", 0, 0, 1,
execvp (execargv[0], execargv);
SCM_SYSERROR;
/* not reached. */
- scm_frame_end ();
+ scm_dynwind_end ();
return SCM_BOOL_F;
}
else
@@ -165,7 +165,7 @@ SCM_DEFINE (scm_system_star, "system*", 0, 0, 1,
scm_sigaction (sigint, SCM_CAR (oldint), SCM_CDR (oldint));
scm_sigaction (sigquit, SCM_CAR (oldquit), SCM_CDR (oldquit));
- scm_frame_end ();
+ scm_dynwind_end ();
return scm_from_int (status);
}
}