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
6d49a2c4
Commit
6d49a2c4
authored
Mar 02, 2018
by
Rob Latham
Browse files
null driver wasn't actually updating new records
parent
9abfa98b
Changes
1
Hide whitespace changes
Inline
Side-by-side
darshan-runtime/lib/darshan-null.c
View file @
6d49a2c4
...
...
@@ -141,7 +141,7 @@ static int my_rank = -1;
/* look up a record reference for this record id using darshan rec_ref interface */
\
rec_ref = darshan_lookup_record_ref(null_runtime->rec_id_hash, &rec_id, sizeof(darshan_record_id)); \
/* if no reference was found, track a new one for this record */
\
if(!rec_ref) null_track_new_record(rec_id, __name); \
if(!rec_ref)
rec_ref =
null_track_new_record(rec_id, __name); \
/* if we still don't have a valid reference, back out */
\
if(!rec_ref) break; \
/* increment counter indicating number of calls to 'foo' */
\
...
...
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