Update of /cvsroot/compbench/CompBenchmarks++
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv28030
Modified Files:
libcompbenchmarks.cpp libcompbenchmarks.h
Log Message:
UI_fatal introduced.
Index: libcompbenchmarks.h
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** libcompbenchmarks.h 28 Dec 2006 13:22:15 -0000 1.2
--- libcompbenchmarks.h 10 Jan 2007 20:32:31 -0000 1.3
***************
*** 42,45 ****
--- 42,49 ----
extern int UO_verbose;
+ /** Enable exits on fatal error.
+ * Set to 1 in Perl wrapper; defaults to 0. */
+ extern int UO_fatal;
+
#endif
Index: libcompbenchmarks.cpp
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** libcompbenchmarks.cpp 28 Dec 2006 13:22:15 -0000 1.2
--- libcompbenchmarks.cpp 10 Jan 2007 20:32:31 -0000 1.3
***************
*** 6,10 ****
int UO_force = 0;
int UO_verbose = 1;
!
void setVerbosity(int v)
--- 6,10 ----
int UO_force = 0;
int UO_verbose = 1;
! int UO_fatal = 1;
void setVerbosity(int v)
|