]> git.treefish.org Git - phys/latlib.git/commitdiff
...
authorAlex Schmidt <alex@treefish.org>
Tue, 12 Feb 2013 08:42:43 +0000 (09:42 +0100)
committerAlex Schmidt <alex@treefish.org>
Tue, 12 Feb 2013 08:42:43 +0000 (09:42 +0100)
writeout.cpp

index e00356a1b85f7f86f89389155fdfea33a3d53c9e..5a68fec8845273b4d3ab806e62263a97c3cc9197 100644 (file)
@@ -31,12 +31,7 @@ writeout::writeout(const string& wdir, const string& signature,
     sprintf(cRank, "%d", rank);
     fulldir = wdir + "/" + tstamp(timestamp) + "_" + signature + ".tmp";
 
-    if ( rank == 0 )
-      for (int itry=0; itry < 10 && mkdir( fulldir.c_str(), 0775) != 0; itry++)
-       sleep(1);
-    else
-      for (int itry=0; itry < 100 && (!(stat(fulldir.c_str(), &sb) == 0) && S_ISDIR(sb.st_mode)); itry++)
-       sleep(1);
+    mkdir( fulldir.c_str(), 0775);
 
     if(rank>0) of.open( (fulldir + "/rank" + cRank + ".tmp").c_str() );
     else of.open( (fulldir + "/" + signature + ".dat").c_str() );