Update of /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv17996
Modified Files:
libcompbenchmarks.cpp libcompbenchmarks.h
Log Message:
UO_verbose_dl introduced.
Index: libcompbenchmarks.h
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/libcompbenchmarks.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** libcompbenchmarks.h 22 Jan 2007 17:42:42 -0000 1.1
--- libcompbenchmarks.h 26 Jan 2007 01:48:07 -0000 1.2
***************
*** 38,45 ****
extern int UO_force;
-
/** Verbose mode.
* If set to 0, disable verbose mode (UI messages disabled). */
extern int UO_verbose;
/** Enable exits on fatal error.
--- 38,46 ----
extern int UO_force;
/** Verbose mode.
* If set to 0, disable verbose mode (UI messages disabled). */
extern int UO_verbose;
+
+ extern int UO_verbose_dl;
/** Enable exits on fatal error.
Index: libcompbenchmarks.cpp
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/libcompbenchmarks.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** libcompbenchmarks.cpp 22 Jan 2007 17:42:42 -0000 1.1
--- libcompbenchmarks.cpp 26 Jan 2007 01:48:07 -0000 1.2
***************
*** 6,9 ****
--- 6,10 ----
int CBM::UO_force = 0;
int CBM::UO_verbose = 1;
+ int CBM::UO_verbose_dl = 0;
int CBM::UO_fatal = 1;
|