Skip to content
Snippets Groups Projects
Commit f9e0db77 authored by Eric Cano's avatar Eric Cano
Browse files

Added a suppression for helgrind complaining on pthread destroy.

Fixed spurious file closing on failure to open in BackendVFS.
parent d2b6e31b
No related branches found
No related tags found
No related merge requests found
......@@ -207,6 +207,11 @@ BackendVFS::Parameters* BackendVFS::getParams() {
void BackendVFS::ScopedLock::release() {
if (!m_fdSet) return;
#ifdef DEBUG_PRINT_LOGS
if (m_fd==-1) {
std::cout << "Warning: fd=-1!" << std::endl;
}
#endif
::flock(m_fd, LOCK_UN);
::close(m_fd);
m_fdSet = false;
......@@ -226,6 +231,8 @@ BackendVFS::ScopedLock * BackendVFS::lockHelper(
exception::Exception ex;
ex.getMessage() << "In BackendVFS::lockHelper(): Failed to open file " << path <<
": " << errnoStr;
// fd=-1, so there will be no need to close the file (when *ret will be destroyed).
ret->m_fdSet=false;
throw ex;
}
......@@ -236,6 +243,12 @@ BackendVFS::ScopedLock * BackendVFS::lockHelper(
": " << errnoStr;
throw ex;
}
#ifdef DEBUG_PRINT_LOGS
if (ret->m_fd==-1) {
std::cout << "Warning: fd=-1!" << std::endl;
}
#endif
return ret.release();
}
......
......@@ -199,3 +199,12 @@
fun:main
}
{
pthread_destroy_castor
Helgrind:Race
fun:my_memcmp
fun:pthread_mutex_destroy
fun:_ZN6castor6server5MutexD1Ev
...
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment