From 5f2e473d36bbd15e3228f9fdc4deca989af52a60 Mon Sep 17 00:00:00 2001 From: Juan Jose Garcia Ripoll Date: Fri, 25 Sep 2009 16:59:36 +0200 Subject: [PATCH] Remove debug statements from last commit --- src/c/unixint.d | 4 ---- src/gc/os_dep.c | 2 -- 2 files changed, 6 deletions(-) diff --git a/src/c/unixint.d b/src/c/unixint.d index 88cf06f0b..2670968c4 100644 --- a/src/c/unixint.d +++ b/src/c/unixint.d @@ -264,7 +264,6 @@ static cl_object pop_signal(cl_env_ptr env); static cl_object handler_fn_protype(lisp_signal_handler, int sig, siginfo_t *info, void *aux) { - printf(";;; signal %d received\n", sig); #if defined(ECL_THREADS) && !defined(_MSC_VER) && !defined(mingw32) cl_env_ptr the_env = ecl_process_env(); if (sig == ecl_get_option(ECL_OPT_THREAD_INTERRUPT_SIGNAL)) { @@ -357,7 +356,6 @@ unblock_signal(int signal) static void handle_signal_now(cl_object signal_code) { - printf(";;; handling signal %p received\n", signal_code); switch (type_of(signal_code)) { case t_fixnum: FEerror("Serious signal ~D caught.", 1, signal_code); @@ -520,7 +518,6 @@ handler_fn_protype(sigsegv_handler, int sig, siginfo_t *info, void *aux) { cl_env_ptr the_env; reinstall_signal(sig, sigsegv_handler); - printf(";;; sigsegv received\n"); if (!ecl_get_option(ECL_OPT_BOOTED)) { ecl_internal_error("Got signal before environment was installed" " on our thread."); @@ -560,7 +557,6 @@ handler_fn_protype(sigbus_handler, int sig, siginfo_t *info, void *aux) { cl_env_ptr the_env; reinstall_signal(sig, sigsegv_handler); - printf(";;; sigbus received\n"); #if defined(SA_SIGINFO) && defined(ECL_USE_MPROTECT) /* We access the environment when it was protected. That * means there was a pending signal. */ diff --git a/src/gc/os_dep.c b/src/gc/os_dep.c index b2a0756dc..a9a5ae297 100644 --- a/src/gc/os_dep.c +++ b/src/gc/os_dep.c @@ -3878,8 +3878,6 @@ catch_exception_raise(mach_port_t exception_port, mach_port_t thread, # error FIXME for non-ppc/x86 darwin # endif - printf("Exception %d received\n", exception); - if(exception != EXC_BAD_ACCESS || code[0] != KERN_PROTECTION_FAILURE) { # ifdef DEBUG_EXCEPTION_HANDLING /* We aren't interested, pass it on to the old handler */