From 4dacd163cc4154fadb6dc7c4dbea1a0af64f1749 Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Fri, 17 Aug 2007 02:31:50 +0000 Subject: [PATCH] Don't grab the information from the MPI_Status for the send requests. This commit was SVN r15897. --- ompi/debuggers/ompi_dll.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ompi/debuggers/ompi_dll.c b/ompi/debuggers/ompi_dll.c index 5e46398a58..7a8d2e9e45 100644 --- a/ompi/debuggers/ompi_dll.c +++ b/ompi/debuggers/ompi_dll.c @@ -100,12 +100,12 @@ * The internal debugging interface. */ #define VERBOSE_GENERAL 1 -#define VERBOSE_GROUP 50 +#define VERBOSE_GROUP 10 #define VERBOSE_COMM 10 #define VERBOSE_LISTS 10 -#define VERBOSE_REQ 20 +#define VERBOSE_REQ 50 -#define VERBOSE 49 +#define VERBOSE 100 #if VERBOSE #define DEBUG(LEVEL, WHAT) if( (LEVEL) > VERBOSE ) { printf WHAT; } #else @@ -1394,7 +1394,7 @@ static int fetch_request( mqs_process *proc, mpi_process_info *p_info, /*res->desired_length = fetch_int( proc, current_item + i_info->mca_pml_base_request_t.offset.req_count, p_info );*/ - if( mqs_st_pending < res->status ) { /* The real data from the status */ + if( (mqs_st_pending < res->status) && (MCA_PML_REQUEST_SEND != req_type) ) { /* The real data from the status */ res->actual_length = fetch_int( proc, current_item + i_info->ompi_request_t.offset.req_status + i_info->ompi_status_public_t.offset._count, p_info );