Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
darshan
darshan
Commits
b4cc833c
Commit
b4cc833c
authored
Mar 14, 2016
by
Shane Snyder
Browse files
bug fix in resolving MPI_Barrrier in shared lib
parent
f2293a81
Changes
1
Show whitespace changes
Inline
Side-by-side
darshan-runtime/lib/darshan-core-init-finalize.c
View file @
b4cc833c
...
...
@@ -136,6 +136,7 @@ DARSHAN_FORWARD_DECL(PMPI_Gather, int, (const void *sendbuf, int sendcount, MPI_
#else
DARSHAN_FORWARD_DECL
(
PMPI_Gather
,
int
,
(
void
*
sendbuf
,
int
sendcount
,
MPI_Datatype
sendtype
,
void
*
recvbuf
,
int
recvcount
,
MPI_Datatype
recvtype
,
int
root
,
MPI_Comm
comm
));
#endif
DARSHAN_FORWARD_DECL
(
PMPI_Barrier
,
int
,
(
MPI_Comm
comm
));
void
resolve_mpi_symbols
(
void
)
{
...
...
@@ -196,6 +197,7 @@ void resolve_mpi_symbols (void)
MAP_OR_FAIL
(
PMPI_Send
);
MAP_OR_FAIL
(
PMPI_Recv
);
MAP_OR_FAIL
(
PMPI_Gather
);
MAP_OR_FAIL
(
PMPI_Barrier
);
return
;
}
...
...
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