From c03b9ce67943d09fd77cc154f1032e34571b00d8 Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Fri, 25 Aug 2006 23:22:35 +0000 Subject: [PATCH] One typo and one UNIX conversion of EOL. This commit was SVN r11430. --- opal/class/opal_object.c | 2 +- opal/util/few.c | 4 ++-- opal/util/output.h | 10 ++++++++++ 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/opal/class/opal_object.c b/opal/class/opal_object.c index 95821ca9d3..fc9f4e67f6 100644 --- a/opal/class/opal_object.c +++ b/opal/class/opal_object.c @@ -33,7 +33,7 @@ /* * Instantiation of class descriptor for the base class. This is * special, since be mark it as already initialized, with no parent - * and no constructor or desctructor + * and no constructor or destructor. */ opal_class_t opal_object_t_class = { "opal_object_t", /* name */ diff --git a/opal/util/few.c b/opal/util/few.c index cef663ab41..0cb0b8067c 100644 --- a/opal/util/few.c +++ b/opal/util/few.c @@ -30,8 +30,8 @@ #endif #include "opal/util/few.h" -#include "opal/util/basename.h" -#include "opal/util/argv.h" +#include "opal/util/basename.h" +#include "opal/util/argv.h" #include "opal/constants.h" int opal_few(char *argv[], int *status) diff --git a/opal/util/output.h b/opal/util/output.h index 224b79ceb4..10d8459577 100644 --- a/opal/util/output.h +++ b/opal/util/output.h @@ -482,5 +482,15 @@ OPAL_DECLSPEC OBJ_CLASS_DECLARATION(opal_output_stream_t); } #endif +/** + * Declare the class of this type. Note that the constructor for + * this class is for convenience only -- it is \em not necessary + * to be invoked. If the constructor it used, it sets all values + * in the struct to be false / 0 (i.e., turning off all output). + * The intended usage is to invoke the constructor and then enable + * the output fields that you want. + */ +OBJ_CLASS_DECLARATION(opal_output_stream_t); + #endif /* OPAL_OUTPUT_H_ */