From 97e692d85a6ba353d5168e405761dd620dcf0af2 Mon Sep 17 00:00:00 2001 From: Pak Lui Date: Mon, 24 Sep 2007 19:02:56 +0000 Subject: [PATCH] mqs_communicator type should not be changed as it serves as the interface between Totalview and DLL. This commit was SVN r16200. --- ompi/debuggers/mpi_interface.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ompi/debuggers/mpi_interface.h b/ompi/debuggers/mpi_interface.h index 9d59f1a83f..5a59b167f0 100644 --- a/ompi/debuggers/mpi_interface.h +++ b/ompi/debuggers/mpi_interface.h @@ -259,7 +259,8 @@ enum mqs_status /* A structure to represent a communicator */ typedef struct { - mqs_tword_t local_rank; /* The rank of this process Comm_rank */ + mqs_taddr_t unique_id; /* A unique tag for the communicator */ + mqs_tword_t local_rank; /* The rank of this process Comm_rank */ mqs_tword_t size; /* Comm_size */ char name[64]; /* the name if it has one */ } mqs_communicator;