Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DISCOS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
INAF
DISCOS
Commits
d8ead43e
Unverified
Commit
d8ead43e
authored
3 years ago
by
Andrea Orlati
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
fix isse #664: not handled exception fixed (#666)
parent
c1eecef4
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
Common/Servers/ReceiversBoss/include/RecvBossCore.h
+3
-1
3 additions, 1 deletion
Common/Servers/ReceiversBoss/include/RecvBossCore.h
Common/Servers/ReceiversBoss/src/RecvBossCore_mc.i
+3
-1
3 additions, 1 deletion
Common/Servers/ReceiversBoss/src/RecvBossCore_mc.i
with
6 additions
and
2 deletions
Common/Servers/ReceiversBoss/include/RecvBossCore.h
+
3
−
1
View file @
d8ead43e
...
...
@@ -415,7 +415,9 @@ private:
void
unloadReceiver
();
#ifdef COMPILE_TARGET_MED
void
setup
(
const
char
*
code
)
throw
(
ComponentErrors
::
SocketErrorExImpl
,
ComponentErrors
::
ValidationErrorExImpl
);
void
setup
(
const
char
*
code
)
throw
(
ComponentErrors
::
SocketErrorExImpl
,
ComponentErrors
::
ValidationErrorExImpl
,
ComponentErrors
::
CORBAProblemExImpl
,
ComponentErrors
::
CouldntGetComponentExImpl
,
ComponentErrors
::
UnexpectedExImpl
,
ComponentErrors
::
OperationErrorExImpl
);
bool
sendToRecvControl
(
const
void
*
buffer
,
int
size
);
bool
sendToFS
(
const
void
*
buffer
,
int
size
);
...
...
This diff is collapsed.
Click to expand it.
Common/Servers/ReceiversBoss/src/RecvBossCore_mc.i
+
3
−
1
View file @
d8ead43e
...
...
@@ -283,7 +283,9 @@ void CRecvBossCore::setLO(const ACS::doubleSeq& lo) throw (ComponentErrors::Vali
IRA::CIRATools::Wait(0,500000); //wait half a second to settle things down
}
void
CRecvBossCore
::
setup
(
const
char
*
code
)
throw
(
ComponentErrors
::
SocketErrorExImpl
,
ComponentErrors
::
ValidationErrorExImpl
)
void
CRecvBossCore
::
setup
(
const
char
*
code
)
throw
(
ComponentErrors
::
SocketErrorExImpl
,
ComponentErrors
::
ValidationErrorExImpl
,
ComponentErrors
::
CORBAProblemExImpl
,
ComponentErrors
::
CouldntGetComponentExImpl
,
ComponentErrors
::
UnexpectedExImpl
,
ComponentErrors
::
OperationErrorExImpl
)
{
IRA::CError err;
IRA::CString rec(code);
...
...
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