0.pre7.55:
[sbcl.git] / src / runtime / interrupt.c
index c516822..590050a 100644 (file)
@@ -141,7 +141,7 @@ fake_foreign_function_call(os_context_t *context)
         /* There is a small window during call where the callee's
          * frame isn't built yet. */
         if (LowtagOf(*os_context_register_addr(context, reg_CODE))
-           == type_FunctionPointer) {
+           == type_FunPointer) {
             /* We have called, but not built the new frame, so
              * build it for them. */
             current_control_frame_pointer[0] =
@@ -391,7 +391,7 @@ interrupt_handle_now(int signal, siginfo_t *info, void *void_context)
         * support decides to pass on it. */
        lose("no handler for signal %d in interrupt_handle_now(..)", signal);
 
-    } else if (LowtagOf(handler.lisp) == type_FunctionPointer) {
+    } else if (LowtagOf(handler.lisp) == type_FunPointer) {
 
         /* Allocate the SAPs while the interrupts are still disabled.
         * (FIXME: Why? This is the way it was done in CMU CL, and it