2004-11-20 22:12:43 +03:00
|
|
|
/*
|
2004-11-22 04:38:40 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
* All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-11-20 22:12:43 +03:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
/** @file:
|
|
|
|
*
|
|
|
|
* The Open MPI general purpose registry - implementation.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* includes
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
|
|
|
|
#include "mca/gpr/base/base.h"
|
|
|
|
|
|
|
|
void mca_gpr_base_print_dump(ompi_buffer_t buffer, int output_id)
|
|
|
|
{
|
|
|
|
char *line;
|
|
|
|
|
|
|
|
while (0 < ompi_unpack_string(buffer, &line)) {
|
|
|
|
ompi_output(output_id, "%s", line);
|
|
|
|
free(line);
|
|
|
|
}
|
|
|
|
}
|