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
72
Issues
72
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
8aba70e7
Commit
8aba70e7
authored
Sep 30, 2016
by
Shane Snyder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
couple of small fixes for comments
parent
89437264
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
18 deletions
+18
-18
darshan-runtime/darshan.h
darshan-runtime/darshan.h
+14
-14
darshan-util/darshan-logutils.h
darshan-util/darshan-logutils.h
+4
-4
No files found.
darshan-runtime/darshan.h
View file @
8aba70e7
...
@@ -82,6 +82,20 @@ struct darshan_fs_info
...
@@ -82,6 +82,20 @@ struct darshan_fs_info
int
mdt_count
;
int
mdt_count
;
};
};
/* darshan_instrument_fs_data()
*
* Allow file system-specific modules to instrument data for the file
* stored at 'path'. 'fs_type' is checked to determine the underlying
* filesystem and calls into the corresponding file system instrumentation
* module, if defined -- currently we only have a Lustre module. 'fd' is
* the file descriptor corresponding to the file, which may be needed by
* the file system to retrieve specific parameters.
*/
void
darshan_instrument_fs_data
(
int
fs_type
,
const
char
*
path
,
int
fd
);
/*****************************************************
/*****************************************************
* darshan-core functions exported to darshan modules *
* darshan-core functions exported to darshan modules *
*****************************************************/
*****************************************************/
...
@@ -144,20 +158,6 @@ void *darshan_core_register_record(
...
@@ -144,20 +158,6 @@ void *darshan_core_register_record(
int
rec_len
,
int
rec_len
,
struct
darshan_fs_info
*
fs_info
);
struct
darshan_fs_info
*
fs_info
);
/* darshan_instrument_fs_data()
*
* Allow file system-specific modules to instrument data for the file
* stored at 'path'. 'fs_type' is checked to determine the underlying
* filesystem and calls into the corresponding file system instrumentation
* module, if defined -- currently we only have a Lustre module. 'fd' is
* the file descriptor corresponding to the file, which may be needed by
* the file system to retrieve specific parameters.
*/
void
darshan_instrument_fs_data
(
int
fs_type
,
const
char
*
path
,
int
fd
);
/* darshan_core_wtime()
/* darshan_core_wtime()
*
*
* Returns the elapsed time relative to (roughly) the start of
* Returns the elapsed time relative to (roughly) the start of
...
...
darshan-util/darshan-logutils.h
View file @
8aba70e7
...
@@ -87,13 +87,13 @@ struct darshan_mod_logutil_funcs
...
@@ -87,13 +87,13 @@ struct darshan_mod_logutil_funcs
void
*
buf
void
*
buf
);
);
/* print the counters for a given log record
/* print the counters for a given log record
* - '
file_
rec' is the record's data buffer
* - 'rec' is the record's data buffer
* - '
file_name' is the file path string for the record
* - '
name' is the name string associated with this record (or NULL if there isn't one)
* - 'mnt
-
pt' is the file path mount point string
* - 'mnt
_
pt' is the file path mount point string
* - 'fs_type' is the file system type string
* - 'fs_type' is the file system type string
*/
*/
void
(
*
log_print_record
)(
void
(
*
log_print_record
)(
void
*
file_
rec
,
void
*
rec
,
char
*
file_name
,
char
*
file_name
,
char
*
mnt_pt
,
char
*
mnt_pt
,
char
*
fs_type
char
*
fs_type
...
...
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