[Darshan-commits] [Darshan] branch, dev-modular, updated. darshan-2.3.1-80-g1c701ef

Service Account git at mcs.anl.gov
Wed Apr 1 11:45:10 CDT 2015


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "".

The branch, dev-modular has been updated
       via  1c701efff1a082d2bba582190da5ad9d2c5bbe86 (commit)
      from  8a1f77e3eb293eabe336194b279ee96c7130db6c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 1c701efff1a082d2bba582190da5ad9d2c5bbe86
Author: Phil Carns <carns at mcs.anl.gov>
Date:   Wed Apr 1 11:44:55 2015 -0500

    mpi-io module works on file handles, not fds

-----------------------------------------------------------------------

Summary of changes:
 darshan-runtime/lib/darshan-mpiio.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)


Diff of changes:
diff --git a/darshan-runtime/lib/darshan-mpiio.c b/darshan-runtime/lib/darshan-mpiio.c
index 5548fb5..f321972 100644
--- a/darshan-runtime/lib/darshan-mpiio.c
+++ b/darshan-runtime/lib/darshan-mpiio.c
@@ -87,7 +87,7 @@ struct mpiio_runtime_file
 struct mpiio_runtime_file_ref
 {
     struct mpiio_runtime_file* file;
-    int fd;
+    MPI_File fh;
     UT_hash_handle hlink;
 };
 
@@ -98,7 +98,7 @@ struct mpiio_runtime
     int file_array_size;
     int file_array_ndx;
     struct mpiio_runtime_file* file_hash;
-    struct mpiio_runtime_file_ref* fd_hash;
+    struct mpiio_runtime_file_ref* fh_hash;
     void *red_buf;
     int shared_rec_count;
 };
@@ -270,9 +270,9 @@ static void mpiio_shutdown()
 {
     struct mpiio_runtime_file_ref *ref, *tmp;
 
-    HASH_ITER(hlink, mpiio_runtime->fd_hash, ref, tmp)
+    HASH_ITER(hlink, mpiio_runtime->fh_hash, ref, tmp)
     {
-        HASH_DELETE(hlink, mpiio_runtime->fd_hash, ref);
+        HASH_DELETE(hlink, mpiio_runtime->fh_hash, ref);
         free(ref);
     }
 


hooks/post-receive
--



More information about the Darshan-commits mailing list