void handle_breakpoint(int signal, siginfo_t* info, os_context_t *context)
{
- lispobj code, context_sap = alloc_sap(context);
+ lispobj code, context_sap;
fake_foreign_function_call(context);
+ context_sap = alloc_sap(context);
code = find_code(context);
/* Don't disallow recursive breakpoint traps. Otherwise, we can't
void *handle_fun_end_breakpoint(int signal, siginfo_t *info,
os_context_t *context)
{
- lispobj code, context_sap = alloc_sap(context);
+ lispobj code, context_sap;
struct code *codeptr;
fake_foreign_function_call(context);
+ context_sap = alloc_sap(context);
code = find_code(context);
codeptr = (struct code *)native_pointer(code);
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.9.4.78"
+"0.9.4.79"