4e4f5951fed8f4d923dcbbc313b3596c62374091 tdreszer Mon Jun 25 12:13:22 2012 -0700 Next batch of many checkins as dictated by Jim. Formatting space after if and limiting lines to 100 chars. Changes limited to lines last touched by tdreszer (git blame) so as not to ruin history. None of these changes should affect executables in any way. Only affect is to my sanity and Jim's. diff --git src/lib/errabort.c src/lib/errabort.c index 9698b4c..e3f8a7d 100644 --- src/lib/errabort.c +++ src/lib/errabort.c @@ -1,30 +1,31 @@ /* ErrAbort.c - our error handler. * * This maintains two stacks - a warning message printer * stack, and a "abort handler" stack. * * By default the warnings will go to stderr, and * aborts will exit the program. You can push a * function on to the appropriate stack to change * this behavior. The top function on the stack * gets called. * * This file is copyright 2002 Jim Kent, but license is hereby * granted for all use - public, private or commercial. */ -// developer: this include is for an occasionally useful means of getting stack info without crashing +// developer: this include is for an occasionally useful means of getting stack info without +// crashing // however, it is not supported on cygwin. Conditionally compile this in when desired. //#define BACKTRACE_EXISTS #ifdef BACKTRACE_EXISTS #include <execinfo.h> #endif///def BACKTRACE_EXISTS #include <pthread.h> #include "common.h" #include "hash.h" #include "dystring.h" #include "errabort.h" #define maxWarnHandlers 20 #define maxAbortHandlers 12