1
1

Change the flag name to conform to prefix rules

This commit was SVN r7223.
Этот коммит содержится в:
Ralph Castain 2005-09-07 19:43:40 +00:00
родитель 2c6e47e38c
Коммит 5d68fa836f
2 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -24,7 +24,7 @@ int opal_trace_handle;
void opal_trace_init(void)
{
#if ENABLE_TRACE
#if OPAL_ENABLE_TRACE
opal_output_stream_t tracer;
/* get a file setup for opal_output to use for the trace */
@ -37,7 +37,7 @@ void opal_trace_init(void)
void opal_trace_finalize(void)
{
#if ENABLE_TRACE
#if OPAL_ENABLE_TRACE
opal_output_close(opal_trace_handle);
#endif
}

Просмотреть файл

@ -20,11 +20,11 @@
#include "ompi_config.h"
#ifndef ENABLE_TRACE
#define ENABLE_TRACE 0
#ifndef OPAL_ENABLE_TRACE
#define OPAL_ENABLE_TRACE 0
#endif
#if ENABLE_TRACE
#if OPAL_ENABLE_TRACE
#include "opal/util/output.h"