Skip to content

Commit 8dc1dd8

Browse files
authored
Merge pull request #197 from sy-c/master
v2.5.0
2 parents 4ca8d3d + 6b994d8 commit 8dc1dd8

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

doc/releaseNotes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ This file describes the main feature changes for each readout.exe released versi
366366
- added memory pool usage statistics (to help tuning buffer pages count and size).
367367
- added some ZeroMQ options for consumerZMQ and equipmentZMQ.
368368

369-
## next version
369+
## v2.5.0 - 27/07/2021
370370
- Updated configuration parameters:
371371
- added equipment-*.saveErrorPagesMax and equipment-*.saveErrorPagesPath to save to disk data pages found with errors (up to given maximum, in given path).
372372
- equipment-*.rdhDumpWarningEnabled default set to 1 (now that RDH warning messages auto-muted on flood).

src/ReadoutVersion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
// granted to it by virtue of its status as an Intergovernmental Organization
1010
// or submit itself to any jurisdiction.
1111

12-
#define READOUT_VERSION "2.4.2"
12+
#define READOUT_VERSION "2.5.0"
1313

src/testFmqMemory.cxx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#include <unistd.h>
1414
#include <string.h>
1515
#include <chrono>
16+
#include <sys/types.h>
1617

1718
#include <fairmq/FairMQDevice.h>
1819
#include <fairmq/FairMQTransportFactory.h>
@@ -32,6 +33,9 @@ int main(int argc, const char* argv[]) {
3233
printf("Usage: %s numberOfGigabytes\n",argv[0]);
3334
return -1;
3435
}
36+
37+
printf("Startup %d\n",(int)getpid());
38+
WAITHERE;
3539

3640
std::unique_ptr<FairMQChannel> sendingChannel;
3741
std::shared_ptr<FairMQTransportFactory> transportFactory;

0 commit comments

Comments
 (0)