]> git.treefish.org Git - phys/latlib.git/blobdiff - writeout.cpp
...
[phys/latlib.git] / writeout.cpp
index 67e90d3b3b9f54fb826d3aa8a554010cd7e3e492..e00356a1b85f7f86f89389155fdfea33a3d53c9e 100644 (file)
@@ -35,7 +35,7 @@ writeout::writeout(const string& wdir, const string& signature,
       for (int itry=0; itry < 10 && mkdir( fulldir.c_str(), 0775) != 0; itry++)
        sleep(1);
     else
-      while ( ! (stat(fulldir.c_str(), &sb) == 0 && S_ISDIR(sb.st_mode)) )
+      for (int itry=0; itry < 100 && (!(stat(fulldir.c_str(), &sb) == 0) && S_ISDIR(sb.st_mode)); itry++)
        sleep(1);
 
     if(rank>0) of.open( (fulldir + "/rank" + cRank + ".tmp").c_str() );
@@ -85,7 +85,7 @@ writeout::~writeout()
              if( (nextfile=getdatfile()) == "" ) sleep(1);
              else
                {
-                 cerr << "collecting " << nextfile << endl;
+                 logf << "collecting " << nextfile << endl;
 
                  ifstream myfile( (fulldir + "/" + nextfile).c_str() );
                  while(true){
@@ -121,7 +121,7 @@ string writeout::getdatfile()
   struct dirent *dirp;
 
   if((dp  = opendir(fulldir.c_str())) == NULL) {
-    cerr << "Error(" << errno << ") opening " << fulldir << endl;
+    logf << "Error(" << errno << ") opening " << fulldir << endl;
     return "";
   }