[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.2-465-g046400f

Service Account noreply at mpich.org
Tue Sep 27 15:36:55 CDT 2016


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 "MPICH primary repository".

The branch, master has been updated
       via  046400f50861dbc800f5b3a0ed5d4513ab2e1fdd (commit)
      from  9865c4c382cd70e7f82a77ec5b64428b3374567b (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 -----------------------------------------------------------------
http://git.mpich.org/mpich.git/commitdiff/046400f50861dbc800f5b3a0ed5d4513ab2e1fdd

commit 046400f50861dbc800f5b3a0ed5d4513ab2e1fdd
Author: Pavan Balaji <balaji at anl.gov>
Date:   Tue Sep 27 15:36:20 2016 -0500

    fix typos in naming
    
    No reviewer.

diff --git a/src/mpi/debugger/dbgstub.c b/src/mpi/debugger/dbgstub.c
index ea93ecd..bfdff0e 100644
--- a/src/mpi/debugger/dbgstub.c
+++ b/src/mpi/debugger/dbgstub.c
@@ -66,7 +66,7 @@ mqs_type * dbgrI_find_type(mqs_image *image, char *name,
 {
     int curType = TYPE_UNKNOWN;
 
-    if (strcmp(name,"MPID_Comm") == 0) {
+    if (strcmp(name,"MPIR_Comm") == 0) {
 	curType = TYPE_MPIR_COMM;
     }
     else if (strcmp( name, "MPIR_Comm_list" ) == 0) {
diff --git a/src/mpi/debugger/dll_mpich.c b/src/mpi/debugger/dll_mpich.c
index 71a9ea8..9bef5f3 100644
--- a/src/mpi/debugger/dll_mpich.c
+++ b/src/mpi/debugger/dll_mpich.c
@@ -275,7 +275,7 @@ int mqs_image_has_queues (mqs_image *image, char **message)
     /* First, the communicator information.  This is in two parts:
        MPIR_All_Communicators - a structure containing the head of the
        list of all active communicators.  The type is MPIR_Comm_list.
-       The communicators themselves are of type MPID_Comm.
+       The communicators themselves are of type MPIR_Comm.
     */
     {
 	mqs_type *cl_type = dbgr_find_type( image, (char *)"MPIR_Comm_list", 
@@ -287,7 +287,7 @@ int mqs_image_has_queues (mqs_image *image, char **message)
 	}
     }
     {
-	mqs_type *co_type = dbgr_find_type( image, (char *)"MPID_Comm", mqs_lang_c );
+	mqs_type *co_type = dbgr_find_type( image, (char *)"MPIR_Comm", mqs_lang_c );
 	if (co_type) {
 	    i_info->comm_name_offs = dbgr_field_offset( co_type, (char *)"name" );
 	    i_info->comm_next_offs = dbgr_field_offset( co_type, (char *)"comm_next" );
diff --git a/src/mpid/ch3/src/ch3u_request.c b/src/mpid/ch3/src/ch3u_request.c
index 5176fc3..72d3a5e 100644
--- a/src/mpid/ch3/src/ch3u_request.c
+++ b/src/mpid/ch3/src/ch3u_request.c
@@ -35,7 +35,7 @@ void MPID_Request_create_hook(MPIR_Request *req)
     
     req->dev.datatype_ptr	   = NULL;
     req->dev.segment_ptr	   = NULL;
-    /* Masks and flags for channel device state in an MPID_Request */
+    /* Masks and flags for channel device state in an MPIR_Request */
     req->dev.state		   = 0;
     req->dev.cancel_pending	   = FALSE;
     /* FIXME: RMA ops shouldn't need to be set except when creating a

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

Summary of changes:
 src/mpi/debugger/dbgstub.c      |    2 +-
 src/mpi/debugger/dll_mpich.c    |    4 ++--
 src/mpid/ch3/src/ch3u_request.c |    2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list