Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Podhorszki, Norbert
ADIOS2
Commits
12ae522d
Commit
12ae522d
authored
Mar 05, 2020
by
Ruonan Wang
Browse files
trying to fix issues with windows build
parent
819dada3
Changes
1
Hide whitespace changes
Inline
Side-by-side
source/adios2/helper/adiosMpiHandshake.cpp
View file @
12ae522d
...
...
@@ -72,7 +72,7 @@ void MpiHandshake::Test()
existed
=
true
;
}
}
if
(
not
existed
)
if
(
!
existed
)
{
ranks
.
push_back
(
rank
);
}
...
...
@@ -88,7 +88,7 @@ void MpiHandshake::Test()
existed
=
true
;
}
}
if
(
not
existed
)
if
(
!
existed
)
{
ranks
.
push_back
(
rank
);
}
...
...
@@ -199,7 +199,7 @@ void MpiHandshake::Start(const size_t maxStreamsPerApp,
void
MpiHandshake
::
Wait
(
const
std
::
string
&
filename
)
{
bool
finished
=
false
;
while
(
not
finished
)
while
(
!
finished
)
{
finished
=
Check
(
filename
);
}
...
...
@@ -228,7 +228,7 @@ void MpiHandshake::Finalize()
MPI_Status
status
;
int
success
;
MPI_Test
(
&
r
,
&
success
,
&
status
);
if
(
not
success
)
if
(
!
success
)
{
MPI_Cancel
(
&
r
);
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment