Skip to content

Commit 3e844fc

Browse files
authored
Merge pull request #1 from AliceO2Group/master
update
2 parents 842a465 + 80be612 commit 3e844fc

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/format.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ on: [pull_request]
44

55
jobs:
66
clang-format:
7-
runs-on: ubuntu-latest
7+
runs-on: ubuntu-22.04
88
steps:
99
- uses: actions/checkout@v2
1010
with:
1111
ref: ${{ github.event.pull_request.head.sha }}
1212

1313
- name: Install prerequisites
1414
run: |
15-
sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-11 100
16-
sudo update-alternatives --install /usr/bin/git-clang-format git-clang-format /usr/bin/git-clang-format-11 100
15+
sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-14 100
16+
sudo update-alternatives --install /usr/bin/git-clang-format git-clang-format /usr/bin/git-clang-format-14 100
1717
1818
- name: Run clang-format on changed files
1919
run: |

doc/releaseNotes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ This file describes the main feature changes for released versions of ReadoutCar
1818
- superpage metadata: added link id.
1919
- added verbosity protection for "Empty counter of Superpage FIFO" warnings
2020

21-
## v0.40.1 - 11/01/2022
21+
## v0.40.1 - 11/01/2023
2222
- Added support for CRORC firmware version v2.10.0 (0x221ff280)
2323
- Minor compilation warnings fixed

src/CommandLineUtilities/ProgramDmaBench.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ class ProgramDmaBench : public Program
437437
// Thread for pushing & checking arrivals
438438
auto pushFuture = std::async(std::launch::async, [&] {
439439
try {
440-
RandomPauses pauses;
440+
RandomPauses pauses{};
441441

442442
while (!isStopDma()) {
443443
// Check if we need to stop in the case of a superpage limit
@@ -500,7 +500,7 @@ class ProgramDmaBench : public Program
500500

501501
// Readout thread (main thread)
502502
try {
503-
RandomPauses pauses;
503+
RandomPauses pauses{};
504504

505505
while (!isStopDma()) {
506506
if (!mInfinitePages && mSuperpagesReadOut.load(std::memory_order_relaxed) >= mSuperpageLimit) {

0 commit comments

Comments
 (0)