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
Jakob Luettgau
darshan
Commits
e37c25df
Commit
e37c25df
authored
Jan 28, 2016
by
Shane Snyder
Browse files
back out unregister of modules at shutdown
parent
b6ba418f
Changes
6
Hide whitespace changes
Inline
Side-by-side
darshan-runtime/lib/darshan-bgq.c
View file @
e37c25df
...
...
@@ -276,8 +276,6 @@ static void bgq_get_output_data(
/* Shutdown the BGQ module by freeing up all data structures. */
static
void
bgq_shutdown
()
{
darshan_core_unregister_module
(
DARSHAN_BGQ_MOD
);
if
(
bgq_runtime
)
{
free
(
bgq_runtime
);
...
...
darshan-runtime/lib/darshan-hdf5.c
View file @
e37c25df
...
...
@@ -564,8 +564,6 @@ static void hdf5_shutdown()
assert
(
hdf5_runtime
);
darshan_core_unregister_module
(
DARSHAN_HDF5_MOD
);
HASH_ITER
(
hlink
,
hdf5_runtime
->
hid_hash
,
ref
,
tmp
)
{
HASH_DELETE
(
hlink
,
hdf5_runtime
->
hid_hash
,
ref
);
...
...
darshan-runtime/lib/darshan-mpiio.c
View file @
e37c25df
...
...
@@ -1514,8 +1514,6 @@ static void mpiio_shutdown()
assert
(
mpiio_runtime
);
darshan_core_unregister_module
(
DARSHAN_MPIIO_MOD
);
HASH_ITER
(
hlink
,
mpiio_runtime
->
fh_hash
,
ref
,
tmp
)
{
HASH_DELETE
(
hlink
,
mpiio_runtime
->
fh_hash
,
ref
);
...
...
darshan-runtime/lib/darshan-null.c
View file @
e37c25df
...
...
@@ -374,8 +374,6 @@ static void null_shutdown()
{
assert
(
null_runtime
);
darshan_core_unregister_module
(
DARSHAN_NULL_MOD
);
HASH_CLEAR
(
hlink
,
null_runtime
->
record_hash
);
/* these hash entries are freed all at once below */
free
(
null_runtime
->
runtime_record_array
);
...
...
darshan-runtime/lib/darshan-pnetcdf.c
View file @
e37c25df
...
...
@@ -576,8 +576,6 @@ static void pnetcdf_shutdown()
assert
(
pnetcdf_runtime
);
darshan_core_unregister_module
(
DARSHAN_PNETCDF_MOD
);
HASH_ITER
(
hlink
,
pnetcdf_runtime
->
ncid_hash
,
ref
,
tmp
)
{
HASH_DELETE
(
hlink
,
pnetcdf_runtime
->
ncid_hash
,
ref
);
...
...
darshan-runtime/lib/darshan-posix.c
View file @
e37c25df
...
...
@@ -2249,8 +2249,6 @@ static void posix_shutdown()
assert
(
posix_runtime
);
darshan_core_unregister_module
(
DARSHAN_POSIX_MOD
);
HASH_ITER
(
hlink
,
posix_runtime
->
fd_hash
,
ref
,
tmp
)
{
HASH_DELETE
(
hlink
,
posix_runtime
->
fd_hash
,
ref
);
...
...
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