Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cta
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dCache
cta
Commits
f9e0db77
Commit
f9e0db77
authored
8 years ago
by
Eric Cano
Browse files
Options
Downloads
Patches
Plain Diff
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
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
objectstore/BackendVFS.cpp
+13
-0
13 additions, 0 deletions
objectstore/BackendVFS.cpp
tests/helgrind.suppr
+9
-0
9 additions, 0 deletions
tests/helgrind.suppr
with
22 additions
and
0 deletions
objectstore/BackendVFS.cpp
+
13
−
0
View file @
f9e0db77
...
...
@@ -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
();
}
...
...
This diff is collapsed.
Click to expand it.
tests/helgrind.suppr
+
9
−
0
View file @
f9e0db77
...
...
@@ -199,3 +199,12 @@
fun:main
}
{
pthread_destroy_castor
Helgrind:Race
fun:my_memcmp
fun:pthread_mutex_destroy
fun:_ZN6castor6server5MutexD1Ev
...
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment