Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
darshan
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
73
Issues
73
List
Boards
Labels
Milestones
Merge Requests
5
Merge Requests
5
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
darshan
darshan
Commits
b3a21f85
Commit
b3a21f85
authored
Mar 27, 2018
by
Rob Latham
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update for API changes
parent
c180b5b3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
10 deletions
+11
-10
darshan-runtime/lib/darshan-mdhim.c
darshan-runtime/lib/darshan-mdhim.c
+11
-10
No files found.
darshan-runtime/lib/darshan-mdhim.c
View file @
b3a21f85
...
...
@@ -26,13 +26,13 @@
* declarations for wrapped funcions, regardless of whether Darshan is used with
* statically or dynamically linked executables.
*/
DARSHAN_FORWARD_DECL
(
mdhimPut
,
struct
mdhim_brm_t
*
,
(
mdhim_t
*
md
,
DARSHAN_FORWARD_DECL
(
mdhimPut
,
mdhim_brm_t
*
,
(
mdhim_t
*
md
,
void
*
key
,
int
key_len
,
void
*
value
,
int
value_len
,
struct
secondary_info
*
secondary_global_info
,
struct
secondary_info
*
secondary_local_info
));
DARSHAN_FORWARD_DECL
(
mdhimGet
,
struct
mdhim_b
getrm_t
*
,
(
mdhim_t
*
md
,
struct
index
_t
*
index
,
void
*
key
,
int
key_len
,
int
op
));
DARSHAN_FORWARD_DECL
(
mdhimGet
,
mdhim_
getrm_t
*
,
(
mdhim_t
*
md
,
struct
index
*
index
,
void
*
key
,
int
key_len
,
int
op
));
DARSHAN_FORWARD_DECL
(
mdhimInit
,
int
,
(
mdhim_t
*
md
,
mdhim_options_t
*
opts
));
...
...
@@ -234,13 +234,13 @@ int DARSHAN_DECL(mdhimInit)(mdhim_t *md, mdhim_options_t *opts)
return
ret
;
}
struct
mdhim_brm_t
*
DARSHAN_DECL
(
mdhimPut
)(
mdhim_t
*
md
,
mdhim_brm_t
*
DARSHAN_DECL
(
mdhimPut
)(
mdhim_t
*
md
,
void
*
key
,
int
key_len
,
void
*
value
,
int
value_len
,
s
truct
secondary_info
*
secondary_global_info
,
s
truct
secondary_info
*
secondary_local_info
)
s
econdary_info_t
*
secondary_global_info
,
s
econdary_info_t
*
secondary_local_info
)
{
struct
mdhim_brm_t
*
ret
;
mdhim_brm_t
*
ret
;
double
tm1
,
tm2
;
/* The MAP_OR_FAIL macro attempts to obtain the address of the actual
...
...
@@ -271,10 +271,11 @@ struct mdhim_brm_t *DARSHAN_DECL(mdhimPut)(mdhim_t *md,
return
(
ret
);
}
struct
mdhim_bgetrm_t
*
DARSHAN_DECL
(
mdhimGet
)(
mdhim_t
*
md
,
struct
index_t
*
index
,
void
*
key
,
int
key_len
,
int
op
)
mdhim_getrm_t
*
DARSHAN_DECL
(
mdhimGet
)(
mdhim_t
*
md
,
struct
index
*
index
,
void
*
key
,
int
key_len
,
enum
TransportGetMessageOp
op
)
{
struct
mdhim_b
getrm_t
*
ret
;
mdhim_
getrm_t
*
ret
;
double
tm1
,
tm2
;
MAP_OR_FAIL
(
mdhimGet
);
...
...
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