Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
libcdi
Commits
820e3c2c
Commit
820e3c2c
authored
Jul 25, 2012
by
Thomas Jahns
🤸
Browse files
Fix missing re-use of variable.
parent
98c2bd30
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/pio_posixfpguardsendrecv.c
View file @
820e3c2c
...
...
@@ -521,14 +521,13 @@ int fowPOSIXFPGUARDSENDRECV ( const char *filename )
/***************************************************************/
void
finalizePOSIXFPGUARDSENDRECV
(
void
)
void
finalizePOSIXFPGUARDSENDRECV
(
void
)
{
int
buffer
=
0
,
tag
,
specialRank
=
commInqSpecialRankNode
();
MPI_Comm
commNode
=
commInqCommNode
();
tag
=
encodeFileOpTag
(
0
,
IO_Finalize
);
int
buffer
=
0
,
tag
=
encodeFileOpTag
(
0
,
IO_Finalize
);
xmpi
(
MPI_Send
(
&
buffer
,
1
,
MPI_INT
,
specialRank
,
tag
,
commNode
));
xmpi
(
MPI_Send
(
&
buffer
,
1
,
MPI_INT
,
commInqSpecialRankNode
(),
tag
,
commInqCommNode
()));
if
(
!
listSetIsEmpty
(
bibAFiledataPF
))
xabort
(
"set bibAFiledataM not empty"
);
...
...
Write
Preview
Markdown
is supported
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