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
8
Merge Requests
8
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
2950f613
Commit
2950f613
authored
Nov 02, 2015
by
Shane Snyder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix random typos in comments
parent
40d1dc03
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
darshan-log-format.h
darshan-log-format.h
+1
-1
darshan-runtime/lib/darshan-core.c
darshan-runtime/lib/darshan-core.c
+8
-8
No files found.
darshan-log-format.h
View file @
2950f613
...
...
@@ -86,7 +86,7 @@ typedef uint64_t darshan_record_id;
/* the darshan_log_map structure is used to indicate the location of
* specific module data in a Darshan log. Note that 'off' and 'len' are
* the respective offset and length of the data in the file, in
* *
un
compressed* terms
* *compressed* terms
*/
struct
darshan_log_map
{
...
...
darshan-runtime/lib/darshan-core.c
View file @
2950f613
...
...
@@ -209,14 +209,14 @@ void darshan_core_initialize(int argc, char **argv)
/* collect information about command line and mounted file systems */
darshan_core
->
trailing_data
=
darshan_get_exe_and_mounts
(
darshan_core
);
}
/* maybe bootstrap modules with static initializers */
i
=
0
;
while
(
mod_static_init_fns
[
i
])
{
(
*
mod_static_init_fns
[
i
])();
i
++
;
/* bootstrap any modules with static initialization routines */
i
=
0
;
while
(
mod_static_init_fns
[
i
])
{
(
*
mod_static_init_fns
[
i
])();
i
++
;
}
}
}
...
...
@@ -980,7 +980,7 @@ static void darshan_get_exe_and_mounts_root(struct darshan_core_runtime *core,
NULL
};
/* length of exe has already been safety checked in darshan
-posix.c
*/
/* length of exe has already been safety checked in darshan
initialization
*/
strcat
(
trailing_data
,
core
->
exe
);
space_left
=
DARSHAN_EXE_LEN
-
strlen
(
trailing_data
);
...
...
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