Salome HOME
Try to kill Salome application when a YACS Launcher job is killed
[modules/kernel.git] / src / SALOMELocalTrace / LocalTraceBufferPool.cxx
index e5ca216d7a261e59cea28887bbd2d8b710edb6c8..74c3a2527f57dccf8d961f7ce47e7dac08f16464 100644 (file)
@@ -1,24 +1,25 @@
-//  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
 //
-//  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
 //
-//  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.
+// 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.
 //
-//  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.
+// 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
+// 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
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
+
 //  Author : Paul RASCLE (EDF)
 //  Module : KERNEL
 //  $Header$
@@ -43,8 +44,6 @@
 #include "FileTraceCollector.hxx"
 #include "utilities.h"
 
-using namespace std;
-
 // In case of truncated message, end of trace contains "...\n\0"
 
 #define TRUNCATED_MESSAGE "...\n"
@@ -113,12 +112,12 @@ LocalTraceBufferPool* LocalTraceBufferPool::instance()
             {
 #ifndef WIN32
               void* handle;
-              string impl_name = string ("lib") + traceKind 
-                + string("TraceCollector.so");
+              std::string impl_name = std::string ("lib") + traceKind 
+                + std::string("TraceCollector.so");
               handle = dlopen( impl_name.c_str() , RTLD_LAZY ) ;
 #else
               HINSTANCE handle;
-              string impl_name = string ("lib") + traceKind + string(".dll");
+              std::string impl_name = std::string ("lib") + traceKind + std::string(".dll");
               handle = LoadLibrary( impl_name.c_str() );
 #endif
               if ( handle )
@@ -133,9 +132,9 @@ LocalTraceBufferPool* LocalTraceBufferPool::instance()
 #endif
                   if ( !TraceCollectorFactory )
                   {
-                      cerr << "Can't resolve symbol: SingletonInstance" <<endl;
+                                         std::cerr << "Can't resolve symbol: SingletonInstance" <<std::endl;
 #ifndef WIN32
-                      cerr << "dlerror: " << dlerror() << endl;
+                      std::cerr << "dlerror: " << dlerror() << std::endl;
 #endif
                       exit( 1 );
                     }
@@ -143,7 +142,7 @@ LocalTraceBufferPool* LocalTraceBufferPool::instance()
                 }
               else
                 {
-                  cerr << "library: " << impl_name << " not found !" << endl;
+                  std::cerr << "library: " << impl_name << " not found !" << std::endl;
                   assert(handle); // to give file and line
                   exit(1);        // in case assert is deactivated
                 }