Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor 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
RadioObservatory
LOFAR
Commits
6d233f47
Commit
6d233f47
authored
11 years ago
by
Jan David Mol
Browse files
Options
Downloads
Patches
Plain Diff
Task #3696: Forward configurable timeout from BufferSettings to SharedStruct
parent
0fea11fe
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
RTCP/Cobalt/InputProc/src/Buffer/BufferSettings.cc
+2
-2
2 additions, 2 deletions
RTCP/Cobalt/InputProc/src/Buffer/BufferSettings.cc
RTCP/Cobalt/InputProc/src/Buffer/BufferSettings.h
+1
-1
1 addition, 1 deletion
RTCP/Cobalt/InputProc/src/Buffer/BufferSettings.h
with
3 additions
and
3 deletions
RTCP/Cobalt/InputProc/src/Buffer/BufferSettings.cc
+
2
−
2
View file @
6d233f47
...
...
@@ -37,14 +37,14 @@ namespace LOFAR
{
}
BufferSettings
::
BufferSettings
(
const
struct
StationID
&
station
,
bool
attach
)
BufferSettings
::
BufferSettings
(
const
struct
StationID
&
station
,
bool
attach
,
time_t
timeout
)
:
version
(
currentVersion
),
station
(
station
)
{
if
(
attach
)
{
do
{
SharedStruct
<
struct
BufferSettings
>
shm
(
station
.
hash
(),
false
);
SharedStruct
<
struct
BufferSettings
>
shm
(
station
.
hash
(),
false
,
timeout
);
*
this
=
shm
.
get
();
}
while
(
!
valid
());
...
...
This diff is collapsed.
Click to expand it.
RTCP/Cobalt/InputProc/src/Buffer/BufferSettings.h
+
1
−
1
View file @
6d233f47
...
...
@@ -69,7 +69,7 @@ namespace LOFAR
// if attach=true, read settings from shared memory, using the given stationID
// if attach=false, set sane default values
BufferSettings
(
const
struct
StationID
&
station
,
bool
attach
);
BufferSettings
(
const
struct
StationID
&
station
,
bool
attach
,
time_t
timeout
=
60
);
// Shortcut to set nrSamples to represent `seconds' of buffer.
void
setBufferSize
(
double
seconds
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment