X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Finterr.c;h=e4df5ec9a270368040dc1593a9b11c804c91ae18;hb=2d4a0df3457bcd50916b33d374da592d8776db0a;hp=18b3e9e11a70ca5cb611db8c9dbbde151f8dc420;hpb=686043635c45a16b418d2cc96a7f704fdab182c2;p=sbcl.git diff --git a/src/runtime/interr.c b/src/runtime/interr.c index 18b3e9e..e4df5ec 100644 --- a/src/runtime/interr.c +++ b/src/runtime/interr.c @@ -25,6 +25,8 @@ #include "interr.h" #include "print.h" #include "lispregs.h" +#include "genesis/static-symbols.h" +#include "genesis/vector.h" /* the way that we shut down the system on a fatal error */ @@ -44,7 +46,7 @@ never_returns lose(char *fmt, ...) { va_list ap; - fprintf(stderr, "fatal error encountered in SBCL runtime system"); + fprintf(stderr, "fatal error encountered in SBCL pid %d",getpid()); if (fmt) { fprintf(stderr, ":\n"); va_start(ap, fmt);