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 "../pml_v.h"
12 #include "vprotocol_example.h"
13
14 int mca_vprotocol_example_enable(bool enable)
15 {
16 V_OUTPUT_VERBOSE(15, "enable=%d", enable);
17 return mca_pml_v.host_pml.pml_enable(enable);
18 }
19
20 int mca_vprotocol_example_progress(void)
21 {
22 V_OUTPUT_VERBOSE(100, "progress...");
23 return mca_pml_v.host_pml.pml_progress();
24 }