X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2Fbases%2Fchrono.cxx;h=126728d95a02ffa1360f78c02ff7a991c1c19364;hb=1894c52d0838df8676e770bef061fc23ca436452;hp=115794a90389a9757ef3997d35768714fcaf3e8f;hpb=f4c10bf1781a76534bb1fa293aef541aef56148b;p=modules%2Fyacs.git diff --git a/src/bases/chrono.cxx b/src/bases/chrono.cxx index 115794a90..126728d95 100644 --- a/src/bases/chrono.cxx +++ b/src/bases/chrono.cxx @@ -1,7 +1,25 @@ +// Copyright (C) 2006-2024 CEA, EDF +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #include "chrono.hxx" -#define _DEVDEBUG_ +//#define _DEVDEBUG_ #include "YacsTrace.hxx" using namespace std; @@ -36,26 +54,28 @@ void counters::stats() for (int i=0; i < _nbChrono; i++) if (_ctrs[i]._ctrOccur) { - DEBTRACE("Compteur[" << i << "]: "<< _ctrs[i]._ctrNames << "[" << _ctrs[i]._ctrLines << "]"); - DEBTRACE(" " << _ctrs[i]._ctrOccur); - DEBTRACE(" " << _ctrs[i]._ctrCumul); + std::cerr << "Compteur[" << i << "]: "<< _ctrs[i]._ctrNames << "[" << _ctrs[i]._ctrLines << "]" << std::endl; + std::cerr << " " << _ctrs[i]._ctrOccur << std::endl; + std::cerr << " " << _ctrs[i]._ctrCumul << std::endl; } } -chrono::chrono(int i) : _ctr(i), _run(true) +salome_chrono::salome_chrono(int i) : _ctr(i), _run(true) { + //DEBTRACE("salome_chrono::salome_chrono " << _ctr << " " << _run); _start = clock(); } -chrono::~chrono() +salome_chrono::~salome_chrono() { if (_run) stop(); } -void chrono::stop() +void salome_chrono::stop() { + //DEBTRACE("salome_chrono::stop " << _ctr << " " << _run); if (_run) { _run = false;