mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-15 05:43:19 -08:00
Remove debug statements from last commit
This commit is contained in:
parent
f8817cda45
commit
5f2e473d36
2 changed files with 0 additions and 6 deletions
|
|
@ -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. */
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue