ff2e5ca85a15d099bda3faf3ab2aa6b96404c593
hiram
  Fri Feb 11 10:37:47 2011 -0800
adding printVmPeak() function to allow checking of maximum memory usage
diff --git src/inc/obscure.h src/inc/obscure.h
index e364a01..910283c 100644
--- src/inc/obscure.h
+++ src/inc/obscure.h
@@ -154,16 +154,19 @@
 void dotForUser();
 /* Write out a dot every _dotForUserMod times this is called. */
 
 void spaceToUnderbar(char *s);
 /* Convert white space to underbar. */
 
 void rangeRoundUp(double start, double end, double *retStart, double *retEnd);
 /* Round start and end so that they cover a slightly bigger range, but with more round
  * numbers.  For instance 0.23:9.89 becomes 0:10 */
 
 void rangeFromMinMaxMeanStd(double minVal, double maxVal, double mean, double std,
 	double *retStart, double *retEnd);
 /* Given some basic statistical properties, set a range that will be good on a wide
  * range of biological data. */
 
+void printVmPeak();
+/* print to stderr peak Vm memory usage (if /proc/ business exists) */
+
 #endif /* OBSCURE_H */