diff options
author | Oz Linden <oz@lindenlab.com> | 2011-02-17 18:52:15 -0500 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2011-02-17 18:52:15 -0500 |
commit | 65ca5968cd59663c3567287c14ce506e37c085c4 (patch) | |
tree | b74325f43d5757fdab1ce607b4f6aff94529e7b3 /indra/llvfs | |
parent | 49e28d324066add8cca44e27806b8077d3b0c542 (diff) | |
parent | cba34d7d4cdb0339113a4798965d595645d5cb49 (diff) |
Automated merge with file:///Users/oz/Work/viewer-vs2010
Diffstat (limited to 'indra/llvfs')
-rw-r--r-- | indra/llvfs/lldir.cpp | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/indra/llvfs/lldir.cpp b/indra/llvfs/lldir.cpp index 64556bcb4c..cb898e385f 100644 --- a/indra/llvfs/lldir.cpp +++ b/indra/llvfs/lldir.cpp @@ -101,10 +101,18 @@ S32 LLDir::deleteFilesInDir(const std::string &dirname, const std::string &mask) { if (0 != LLFile::remove(fullpath)) { + retry_count++; result = errno; llwarns << "Problem removing " << fullpath << " - errorcode: " << result << " attempt " << retry_count << llendl; - ms_sleep(1000); + + if(retry_count >= 5) + { + llwarns << "Failed to remove " << fullpath << llendl ; + return count ; + } + + ms_sleep(100); } else { @@ -113,8 +121,7 @@ S32 LLDir::deleteFilesInDir(const std::string &dirname, const std::string &mask) llwarns << "Successfully removed " << fullpath << llendl; } break; - } - retry_count++; + } } count++; } |