src/inc/common.h 1.151

1.151 2009/06/03 00:34:10 markd
added option to generate stack dumps when browser errors occur
Index: src/inc/common.h
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/inc/common.h,v
retrieving revision 1.150
retrieving revision 1.151
diff -b -B -U 4 -r1.150 -r1.151
--- src/inc/common.h	10 May 2009 02:09:15 -0000	1.150
+++ src/inc/common.h	3 Jun 2009 00:34:10 -0000	1.151
@@ -1163,15 +1163,17 @@
 /* Split off number part, e.g. 8 of mm8. Result should be freed when done */
 
 void vaDumpStack(char *format, va_list args);
 /* debugging function to run the pstack program on the current process. In
- * prints a message, following by a new line, and then the stack track.
- * For debugging purposes only.  */
+ * prints a message, following by a new line, and then the stack track.  Just
+ * prints errors to stderr rather than aborts. For debugging purposes
+ * only.  */
 
 void dumpStack(char *format, ...)
 /* debugging function to run the pstack program on the current process. In
- * prints a message, following by a new line, and then the stack track.
- * For debugging purposes only.  */
+ * prints a message, following by a new line, and then the stack track.  Just
+ * prints errors to stderr rather than aborts. For debugging purposes
+ * only.  */
 #if defined(__GNUC__)
 __attribute__((format(printf, 1, 2)))
 #endif
 ;