Skip to content
Snippets Groups Projects
Commit 86a8e703 authored by scott snyder's avatar scott snyder Committed by scott snyder
Browse files

TrigServices: Thread-safety cleanup.

Thread-safety annotations should match between declarations and definitions.
parent 28d2e8d2
No related branches found
No related tags found
No related merge requests found
/* /*
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/ */
#ifndef TRIGMONTHISTSVC_THISTSVC_H #ifndef TRIGMONTHISTSVC_THISTSVC_H
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
#include "GaudiKernel/ITHistSvc.h" #include "GaudiKernel/ITHistSvc.h"
#include "AthenaBaseComps/AthService.h" #include "AthenaBaseComps/AthService.h"
#include "CxxUtils/checker_macros.h"
class TObject; class TObject;
class TH1; class TH1;
...@@ -44,7 +45,7 @@ class TrigMonTHistSvc: public extends<AthService, ITHistSvc> ...@@ -44,7 +45,7 @@ class TrigMonTHistSvc: public extends<AthService, ITHistSvc>
public: public:
TrigMonTHistSvc(const std::string& name, ISvcLocator *svc ); TrigMonTHistSvc(const std::string& name, ISvcLocator *svc );
virtual StatusCode initialize() override; virtual StatusCode initialize ATLAS_NOT_THREAD_SAFE () override;
virtual StatusCode stop() override; virtual StatusCode stop() override;
virtual StatusCode finalize() override; virtual StatusCode finalize() override;
......
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