[Compbench-devel] CompBenchmarks++/Benchmark Benchmark-DLLoader.cpp, 1.6, 1.7
Brought to you by:
xfred
From: Frederic T. <xf...@us...> - 2007-01-21 20:47:11
|
Update of /cvsroot/compbench/CompBenchmarks++/Benchmark In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv19768 Modified Files: Benchmark-DLLoader.cpp Log Message: CBM namespace. Index: Benchmark-DLLoader.cpp =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/Benchmark/Benchmark-DLLoader.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Benchmark-DLLoader.cpp 18 Jan 2007 18:44:00 -0000 1.6 --- Benchmark-DLLoader.cpp 21 Jan 2007 20:47:08 -0000 1.7 *************** *** 8,18 **** using namespace CBM; ! std::vector<std::string> cbmlib_paths; ! std::vector<Package*> cbmlib_packages; /* cache... */ std::vector<cbmlib_internal*> cbmlib_loaded_libraries; ! int PACKAGE_AUTOPURGE=1; cbmlib_internal *cbmlib_check_previousload(char *package_id) --- 8,18 ---- using namespace CBM; ! std::vector<std::string> CBM::cbmlib_paths; ! std::vector<Package*> CBM::cbmlib_packages; /* cache... */ std::vector<cbmlib_internal*> cbmlib_loaded_libraries; ! int CBM::PACKAGE_AUTOPURGE=1; cbmlib_internal *cbmlib_check_previousload(char *package_id) *************** *** 74,78 **** } ! cbmlib_internal *cbmlib_load(char *package_id) { std::string tmp; --- 74,78 ---- } ! cbmlib_internal *CBM::cbmlib_load(char *package_id) { std::string tmp; *************** *** 95,99 **** } ! void cbmlib_done(void) { int i; --- 95,99 ---- } ! void CBM::cbmlib_done(void) { int i; |