1 /* 2 * Copyright (c) 2004-2007 The Trustees of the University of Tennessee. 3 * All rights reserved. 4 * $COPYRIGHT$ 5 * 6 * Additional copyrights may follow 7 * 8 * $HEADER$ 9 */ 10 11 #include "ompi_config.h" 12 #include "vprotocol_pessimist_sender_based.h" 13 #include "vprotocol_pessimist.h" 14 15 #ifdef SB_USE_PROGRESS_METHOD 16 17 int mca_vprotocol_pessimist_progress(void) 18 { 19 int ret; 20 21 printf("PROGRESS\n"); 22 /* First let the real progress take place */ 23 ret = mca_pml_v.host_pml.pml_progress(); 24 /* Then progess the sender_based copies */ 25 vprotocol_pessimist_sb_progress_all_reqs(); 26 return ret; 27 } 28 29 #endif