[Compbench-devel] CompBenchmarks++/libcompbenchmarks/System System.cpp, 1.4, 1.5 System.h, 1.4, 1.5
Brought to you by:
xfred
From: Frederic T. <xf...@us...> - 2007-02-06 19:31:23
|
Update of /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/System In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv18311 Modified Files: System.cpp System.h Log Message: displayPrograms() method obsoleted. Index: System.cpp =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/System/System.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** System.cpp 5 Feb 2007 20:01:01 -0000 1.4 --- System.cpp 6 Feb 2007 19:31:13 -0000 1.5 *************** *** 450,454 **** return(r); } ! void System::display(void) { --- 450,454 ---- return(r); } ! /* void System::display(void) { *************** *** 463,467 **** --- 463,469 ---- << "host::processor_number=" << processor_number() << std::endl; } + */ + /* void System::displayPrograms(void) { *************** *** 486,489 **** --- 488,492 ---- } + */ std::string System::exec0(std::string& command) Index: System.h =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/System/System.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** System.h 5 Feb 2007 19:59:41 -0000 1.4 --- System.h 6 Feb 2007 19:31:13 -0000 1.5 *************** *** 199,203 **** * Displays informations about processors, OS, and so on. */ ! virtual void display(void); virtual std::string Program(std::string pid); --- 199,203 ---- * Displays informations about processors, OS, and so on. */ ! // virtual void display(void); virtual std::string Program(std::string pid); *************** *** 206,210 **** * Displays informations about external programs used in CompBenchmarks or in * compbenchmark-config program. */ ! virtual void displayPrograms(void); /** External command execution. --- 206,210 ---- * Displays informations about external programs used in CompBenchmarks or in * compbenchmark-config program. */ ! // virtual void displayPrograms(void); /** External command execution. |