Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
VTK
VTK
Commits
a008394f
Commit
a008394f
authored
Nov 08, 2002
by
Charles Law
Browse files
Better error reporting.
parent
ec99d596
Changes
1
Hide whitespace changes
Inline
Side-by-side
Parallel/vtkMultiProcessController.cxx
View file @
a008394f
...
...
@@ -53,10 +53,10 @@ protected:
void
operator
=
(
const
vtkMultiProcessControllerRMI
&
);
};
vtkCxxRevisionMacro
(
vtkMultiProcessControllerRMI
,
"1.1
4
"
);
vtkCxxRevisionMacro
(
vtkMultiProcessControllerRMI
,
"1.1
5
"
);
vtkStandardNewMacro
(
vtkMultiProcessControllerRMI
);
vtkCxxRevisionMacro
(
vtkMultiProcessController
,
"1.1
4
"
);
vtkCxxRevisionMacro
(
vtkMultiProcessController
,
"1.1
5
"
);
//----------------------------------------------------------------------------
// An RMI function that will break the "ProcessRMIs" loop.
...
...
@@ -337,6 +337,7 @@ void vtkMultiProcessController::ProcessRMIs()
if
(
!
this
->
RMICommunicator
->
Receive
(
triggerMessage
,
3
,
ANY_SOURCE
,
RMI_TAG
))
{
vtkErrorMacro
(
"Could not receive RMI trigger message."
);
break
;
}
if
(
triggerMessage
[
1
]
>
0
)
...
...
@@ -345,6 +346,7 @@ void vtkMultiProcessController::ProcessRMIs()
if
(
!
this
->
RMICommunicator
->
Receive
((
char
*
)(
arg
),
triggerMessage
[
1
],
triggerMessage
[
2
],
RMI_ARG_TAG
))
{
vtkErrorMacro
(
"Could not receive RMI argument."
);
break
;
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment