1
1
openmpi/oshmem/util/oshmem_util.c
Mike Dubman 30e1e49a9e OSHMEM: refactoring to reuse common functions from different components.
This is preparation for moving verbs dependent code out from memheap/base component

Refs: #3763

This commit was SVN r30454.
2014-01-28 07:30:36 +00:00

43 строки
879 B
C

/*
* Copyright (c) 2014 Mellanox Technologies, Inc.
* All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "oshmem_config.h"
#include <stdarg.h>
#include <stdio.h>
#include "opal/util/output.h"
#include "oshmem/constants.h"
#include "oshmem/util/oshmem_util.h"
void oshmem_output_verbose(int level, int output_id, const char* prefix, const char* file, int line, const char* function, const char* format, ...)
{
va_list args;
char *buff, *str;
int ret = 0;
UNREFERENCED_PARAMETER(ret);
va_start(args, format);
ret = vasprintf(&str, format, args);
assert(-1 != ret);
ret = asprintf(&buff, "%s %s", prefix, str);
assert(-1 != ret);
opal_output_verbose(level, output_id, buff, file, line, function);
va_end(args);
free(buff);
free(str);
}