Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
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
atlas
athena
Merge requests
!47600
TrigNavStructure: Enable thread-safety checking.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
TrigNavStructure: Enable thread-safety checking.
ssnyder/athena:thread.TrigNavStructure-20211026
into
master
Overview
3
Commits
1
Pipelines
1
Changes
10
Merged
Scott Snyder
requested to merge
ssnyder/athena:thread.TrigNavStructure-20211026
into
master
3 years ago
Overview
3
Commits
1
Pipelines
1
Changes
10
Expand
Enable thread-safety checking. Fix warnings.
1
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
60a5801a
1 commit,
3 years ago
10 files
+
111
−
99
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
Trigger/TrigEvent/TrigNavStructure/Root/StringSerializer.cxx
+
2
−
2
Options
/*
Copyright (C) 2002-201
7
CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-20
2
1 CERN for the benefit of the ATLAS collaboration
*/
#include
<cstring>
@@ -13,7 +13,7 @@
// the implementation is almost exact copy of the one in the TrigSerializeResult
namespace
{
const
char
*
delimiter
=
"
\n
"
;
const
char
*
const
delimiter
=
"
\n
"
;
unsigned
int
getPadding
(
unsigned
int
sizeToReserve
)
{
return
(
sizeof
(
uint32_t
)
-
sizeToReserve
%
sizeof
(
uint32_t
))
%
sizeof
(
uint32_t
);
Loading