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
b6960113
Commit
b6960113
authored
9 years ago
by
Steven Murray
Browse files
Options
Downloads
Patches
Plain Diff
Improved the Doxyfile
parent
4582de61
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Doxyfile
+3
-3
3 additions, 3 deletions
Doxyfile
scheduler/Scheduler.hpp
+13
-0
13 additions, 0 deletions
scheduler/Scheduler.hpp
tapeserver/castor/tape/tapeserver/daemon/TapeDaemon.cpp
+3
-1
3 additions, 1 deletion
tapeserver/castor/tape/tapeserver/daemon/TapeDaemon.cpp
with
19 additions
and
4 deletions
Doxyfile
+
3
−
3
View file @
b6960113
...
...
@@ -47,7 +47,7 @@ OUTPUT_DIRECTORY = doxygen
# source files, where putting all generated files in the same directory would
# otherwise cause performance problems for the file system.
CREATE_SUBDIRS =
NO
CREATE_SUBDIRS =
YES
# The OUTPUT_LANGUAGE tag is used to specify the language in which all
# documentation generated by doxygen is written. Doxygen will use this
...
...
@@ -372,7 +372,7 @@ INTERNAL_DOCS = NO
# in case and if your file system supports case sensitive file names. Windows
# and Mac users are advised to set this option to NO.
CASE_SENSE_NAMES =
YES
CASE_SENSE_NAMES =
NO
# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
# will show members with their full class and namespace scopes in the
...
...
@@ -568,7 +568,7 @@ WARN_LOGFILE =
# directories like "/usr/src/myproject". Separate the files or directories
# with spaces.
INPUT = cmdline common nameserver objectstore remotens scheduler xroot_plugins
INPUT = cmdline common nameserver objectstore remotens scheduler
tapeserver
xroot_plugins
# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
...
...
This diff is collapsed.
Click to expand it.
scheduler/Scheduler.hpp
+
13
−
0
View file @
b6960113
...
...
@@ -50,6 +50,7 @@ class SecurityIdentity;
class
StorageClass
;
class
Tape
;
class
TapeMount
;
class
TapeSession
;
class
TapePool
;
class
UserIdentity
;
...
...
@@ -645,6 +646,18 @@ public:
std
::
unique_ptr
<
TapeMount
>
getNextMount
(
const
std
::
string
&
logicalLibraryName
,
const
std
::
string
&
driveName
);
/**
* Returns the next tape session for the specified logical library.
* All the functions of the mount will handled via the mount object
* itself. This is the entry point to the tape server's interface
*
* @param logicalLibraryName The name of the logical library.
* @param driveName The drive's name.
* @return The next tape mount or NULL if there is currently no work to do.
*/
std
::
unique_ptr
<
TapeSession
>
getNextMount
(
const
std
::
string
&
logicalLibraryName
,
const
std
::
string
&
driveName
);
// class ArchiveMount:public TapeMount {
// public:
// class ArchiveJob
...
...
This diff is collapsed.
Click to expand it.
tapeserver/castor/tape/tapeserver/daemon/TapeDaemon.cpp
+
3
−
1
View file @
b6960113
...
...
@@ -614,7 +614,9 @@ void castor::tape::tapeserver::daemon::TapeDaemon::initZmqContext() {
void
castor
::
tape
::
tapeserver
::
daemon
::
TapeDaemon
::
setUpReactor
(
const
int
reaperSocket
)
{
createAndRegisterProcessForkerConnectionHandler
(
reaperSocket
);
createAndRegisterVdqmAcceptHandler
();
// In the CTA project the tapeserverd daemon does not listen for jobs from the
// vdqmd daemon, therefore do not create and register the vdqm accept handler
//createAndRegisterVdqmAcceptHandler();
createAndRegisterAdminAcceptHandler
();
createAndRegisterLabelCmdAcceptHandler
();
createAndRegisterTapeMessageHandler
();
...
...
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