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
f2ac781f
Commit
f2ac781f
authored
11 years ago
by
Elvin Alin Sindrilaru
Browse files
Options
Downloads
Patches
Plain Diff
XROOTD: Fix compilation error - variable added to the wrong class
parent
685b5ee6
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
xrootd/XrdxCastor2Ofs.cpp
+2
-2
2 additions, 2 deletions
xrootd/XrdxCastor2Ofs.cpp
xrootd/XrdxCastor2Ofs.hpp
+1
-1
1 addition, 1 deletion
xrootd/XrdxCastor2Ofs.hpp
with
3 additions
and
3 deletions
xrootd/XrdxCastor2Ofs.cpp
+
2
−
2
View file @
f2ac781f
...
...
@@ -96,8 +96,7 @@ extern "C"
// Constructor
//------------------------------------------------------------------------------
XrdxCastor2Ofs
::
XrdxCastor2Ofs
()
:
LogId
(),
mIsUpdate
(
false
)
LogId
()
{
mLogLevel
=
LOG_INFO
;
// log info
}
...
...
@@ -505,6 +504,7 @@ XrdxCastor2OfsFile::XrdxCastor2OfsFile( const char* user, int MonID ) :
isTruncate
=
false
;
viaDestructor
=
false
;
mTpcKey
=
""
;
mIsUpdate
=
false
;
}
...
...
This diff is collapsed.
Click to expand it.
xrootd/XrdxCastor2Ofs.hpp
+
1
−
1
View file @
f2ac781f
...
...
@@ -283,6 +283,7 @@ class XrdxCastor2OfsFile : public XrdOfsFile, public LogId
XrdOucString
DiskChecksumAlgorithm
;
///<
bool
verifyChecksum
;
///<
std
::
string
mTpcKey
;
///< tpc key allocated to this file
bool
mIsUpdate
;
///< mark if file is opened for update
};
...
...
@@ -485,7 +486,6 @@ class XrdxCastor2Ofs : public XrdOfs, public LogId
int
ThirdPartyCopySlotRate
;
///< default from Configure
XrdOucString
ThirdPartyCopyStateDirectory
;
///< default from Configure
int
mLogLevel
;
///< log level from configuration file
bool
mIsUpdate
;
///< mark if file is opened for update
XrdSysMutex
mTpcMapMutex
;
///< mutex to protect access to the TPC map
std
::
map
<
std
::
string
,
struct
TpcInfo
>
mTpcMap
;
///< TPC map of kety to lfn
...
...
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