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
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Cristian Simarro
darshan
Commits
8821f33d
Commit
8821f33d
authored
Jan 31, 2017
by
Shane Snyder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ENABLE_DXT_IO_TRACE_MEM => DXT_ENABLE_IO_TRACE
parent
dbbfe135
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
darshan-runtime/lib/darshan-dxt.c
darshan-runtime/lib/darshan-dxt.c
+2
-2
darshan-runtime/lib/darshan-mpiio.c
darshan-runtime/lib/darshan-mpiio.c
+1
-1
darshan-runtime/lib/darshan-posix.c
darshan-runtime/lib/darshan-posix.c
+1
-1
No files found.
darshan-runtime/lib/darshan-dxt.c
View file @
8821f33d
...
...
@@ -410,7 +410,7 @@ static void dxt_posix_runtime_initialize()
memset
(
dxt_posix_runtime
,
0
,
sizeof
(
*
dxt_posix_runtime
));
/* set the memory quota for DXT, if it has not been initialized */
envstr
=
getenv
(
"
ENABLE_DXT_IO_TRACE_MEM
"
);
envstr
=
getenv
(
"
DXT_ENABLE_IO_TRACE
"
);
if
(
envstr
&&
dxt_mpiio_runtime
==
NULL
)
{
ret
=
sscanf
(
envstr
,
"%lf"
,
&
tmpfloat
);
...
...
@@ -463,7 +463,7 @@ void dxt_mpiio_runtime_initialize()
memset
(
dxt_mpiio_runtime
,
0
,
sizeof
(
*
dxt_mpiio_runtime
));
/* set the memory quota for DXT, if it has not been initialized */
envstr
=
getenv
(
"
ENABLE_DXT_IO_TRACE_MEM
"
);
envstr
=
getenv
(
"
DXT_ENABLE_IO_TRACE
"
);
if
(
envstr
&&
dxt_posix_runtime
==
NULL
)
{
ret
=
sscanf
(
envstr
,
"%lf"
,
&
tmpfloat
);
...
...
darshan-runtime/lib/darshan-mpiio.c
View file @
8821f33d
...
...
@@ -862,7 +862,7 @@ static void mpiio_runtime_initialize()
memset
(
mpiio_runtime
,
0
,
sizeof
(
*
mpiio_runtime
));
/* check if DXT (Darshan extended tracing) should be enabled */
if
(
getenv
(
"
ENABLE_DXT_IO_TRACE_MEM
"
))
{
if
(
getenv
(
"
DXT_ENABLE_IO_TRACE
"
))
{
enable_dxt_io_trace
=
1
;
}
...
...
darshan-runtime/lib/darshan-posix.c
View file @
8821f33d
...
...
@@ -1291,7 +1291,7 @@ static void posix_runtime_initialize()
memset
(
posix_runtime
,
0
,
sizeof
(
*
posix_runtime
));
/* check if DXT (Darshan extended tracing) should be enabled */
if
(
getenv
(
"
ENABLE_DXT_IO_TRACE_MEM
"
))
{
if
(
getenv
(
"
DXT_ENABLE_IO_TRACE
"
))
{
enable_dxt_io_trace
=
1
;
}
...
...
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