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

Fixed process names.

(see 'ps -ax -o "pid comm cmd"  | grep /usr/bin/cta-taped').
parent 45929266
No related branches found
Tags v3.1-8
No related merge requests found
......@@ -249,7 +249,7 @@ int MaintenanceHandler::runChild() {
// collect them like any other crashed agent.
// Set the thread name for process ID:
prctl(PR_SET_NAME, "cta-taped-gc");
prctl(PR_SET_NAME, "cta-tpd-maint");
// Before anything, we will check for access to the scheduler's central storage.
// If we fail to access it, we cannot work. We expect the drive processes to
......
......@@ -92,7 +92,7 @@ void cta::tape::daemon::TapeDaemon::exceptionThrowingMain() {
setProcessCapabilities("cap_sys_rawio+p");
// Set the name of the (unique) thread for easy process identification.
prctl(PR_SET_NAME, "cta-taped-main");
prctl(PR_SET_NAME, "cta-tpd-master");
mainEventLoop();
}
......
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