X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fbacktrace.c;h=90ae58d9838be4af7aba9475dd459e6e6ca91f1a;hb=6127c0b282bb6d7fa6d225ee91d0a601d9b82360;hp=98189b91a883d27d892753467b1976db71a525eb;hpb=4e29601620da84a47f2711fe5a2e4de5983f2c51;p=sbcl.git diff --git a/src/runtime/backtrace.c b/src/runtime/backtrace.c index 98189b9..90ae58d 100644 --- a/src/runtime/backtrace.c +++ b/src/runtime/backtrace.c @@ -408,7 +408,7 @@ debug_function_from_pc (struct code* code, void *pc) if (i == len) return ((struct compiled_debug_fun *) native_pointer(v->data[i - 1])); - if (offset >= fixnum_value(df->elsewhere_pc)) { + if (offset >= (unsigned long)fixnum_value(df->elsewhere_pc)) { struct compiled_debug_fun *p = ((struct compiled_debug_fun *) native_pointer(v->data[i + 1])); next_pc = fixnum_value(p->elsewhere_pc); @@ -528,6 +528,33 @@ print_entry_points (struct code *code) } } +void +describe_thread_state(void) +{ + sigset_t mask; + struct thread *thread = arch_os_get_current_thread(); +#ifndef LISP_FEATURE_WIN32 + thread_sigmask(SIG_SETMASK, NULL, &mask); + printf("Signal mask:\n"); + printf(" SIGALRM = %d\n", sigismember(&mask, SIGALRM)); + printf(" SIGINT = %d\n", sigismember(&mask, SIGINT)); + printf(" SIGPROF = %d\n", sigismember(&mask, SIGPROF)); +#ifdef SIG_INTERRUPT_THREAD + printf(" SIG_INTERRUPT_THREAD = %d\n", sigismember(&mask, SIG_INTERRUPT_THREAD)); +#endif +#ifdef SIG_STOP_FOR_GC + printf(" SIG_STOP_FOR_GC = %d\n", sigismember(&mask, SIG_STOP_FOR_GC)); +#endif +#endif + printf("Specials:\n"); + printf(" *GC-INHIBIT* = %s\n", (SymbolValue(GC_INHIBIT, thread) == T) ? "T" : "NIL"); + printf(" *GC-PENDING* = %s\n", (SymbolValue(GC_PENDING, thread) == T) ? "T" : "NIL"); + printf(" *INTERRUPTS-ENABLED* = %s\n", (SymbolValue(INTERRUPTS_ENABLED, thread) == T) ? "T" : "NIL"); +#ifdef STOP_FOR_GC_PENDING + printf(" *STOP-FOR-GC-PENDING* = %s\n", (SymbolValue(STOP_FOR_GC_PENDING, thread) == T) ? "T" : "NIL"); +#endif +} + /* This function has been split from backtrace() to enable Lisp * backtraces from gdb with call backtrace_from_fp(...). Useful for * example when debugging threading deadlocks.