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
d0553094
Commit
d0553094
authored
16 years ago
by
John Romein
Browse files
Options
Downloads
Patches
Plain Diff
bug 225:
Put curly braces around macros.
parent
ce16df1d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
LCS/ACC/PLC/src/ProcCtrlCmdLine.cc
+17
-9
17 additions, 9 deletions
LCS/ACC/PLC/src/ProcCtrlCmdLine.cc
with
17 additions
and
9 deletions
LCS/ACC/PLC/src/ProcCtrlCmdLine.cc
+
17
−
9
View file @
d0553094
...
@@ -53,29 +53,37 @@ namespace LOFAR
...
@@ -53,29 +53,37 @@ namespace LOFAR
uint
noRuns
=
arg
.
getUint32
(
"NoRuns"
,
0
);
uint
noRuns
=
arg
.
getUint32
(
"NoRuns"
,
0
);
LOG_DEBUG
(
progName
+
" starting define"
);
LOG_DEBUG
(
progName
+
" starting define"
);
if
(
err
=
err
||
!
define
())
LOG_ERROR
(
"Error during define()"
);
if
(
err
=
err
||
!
define
())
{
else
{
LOG_ERROR
(
"Error during define()"
);
}
else
{
LOG_DEBUG
(
progName
+
" initializing"
);
LOG_DEBUG
(
progName
+
" initializing"
);
if
(
err
=
err
||
!
init
())
LOG_ERROR
(
"Error during init()"
);
if
(
err
=
err
||
!
init
())
{
else
{
LOG_ERROR
(
"Error during init()"
);
}
else
{
LOG_DEBUG_STR
(
progName
+
" running (noRuns="
<<
noRuns
<<
")"
);
LOG_DEBUG_STR
(
progName
+
" running (noRuns="
<<
noRuns
<<
")"
);
if
(
noRuns
>
0
)
if
(
noRuns
>
0
)
do
err
=
err
||
!
run
();
while
(
inRunState
()
&&
--
noRuns
>
0
);
do
err
=
err
||
!
run
();
while
(
inRunState
()
&&
--
noRuns
>
0
);
else
else
do
err
=
err
||
!
run
();
while
(
inRunState
());
do
err
=
err
||
!
run
();
while
(
inRunState
());
if
(
err
)
LOG_ERROR
(
"Error during run()"
);
if
(
err
)
{
else
{
LOG_ERROR
(
"Error during run()"
);
}
else
{
LOG_DEBUG
(
progName
+
" pausing now"
);
LOG_DEBUG
(
progName
+
" pausing now"
);
if
(
err
=
err
||
!
pause
(
PAUSE_OPTION_NOW
))
if
(
err
=
err
||
!
pause
(
PAUSE_OPTION_NOW
))
{
LOG_ERROR
(
"Error during pause()"
);
LOG_ERROR
(
"Error during pause()"
);
}
}
}
}
}
}
}
LOG_DEBUG
(
progName
+
" releasing"
);
LOG_DEBUG
(
progName
+
" releasing"
);
if
(
err
=
err
||
!
release
())
LOG_ERROR
(
"Error during release()"
);
if
(
err
=
err
||
!
release
())
{
LOG_ERROR
(
"Error during release()"
);
}
LOG_DEBUG
(
progName
+
" quitting"
);
LOG_DEBUG
(
progName
+
" quitting"
);
if
(
err
=
err
||
!
quit
())
LOG_ERROR
(
"Error during quit()"
);
if
(
err
=
err
||
!
quit
())
{
LOG_ERROR
(
"Error during quit()"
);
}
return
(
err
);
return
(
err
);
}
}
...
...
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